Click here to Skip to main content
Licence 
First Posted 23 May 2000
Views 91,346
Bookmarked 28 times

Using dialogs in console apps

By | 23 May 2000 | Article
Learn how to display a message box from a console application.

Introduction

Traditionally, the world has been divided into two kinds of apps, and ne'er the twain shall meet: Console applications and GUI applications. (Actually, if you write a console app that talks to a scanner, and a GUI app that talks to a scanner, they both meet the TWAIN...)

Strictly speaking, this separation has not been true. A console app can presumably create a message loop and pop up windows; a GUI app can create and attach a console. But these are considered major pieces of effort.

A popular reason GUI apps seem to want to create consoles is to have a logging window to which debug output can be written. I solved this problem years ago with a technology that has evolved into a fairly sophisticated set of MFC classes, my Logging ListBox class.

However, last week a client contacted me. He needed the ability to handle a MessageBox from a console app, and I had everything working with one little, but showstopper, glitch: I couldn't find any API that gave me a handle to the window in which the console app was running.

So I did the obvious thing: I posted the question on the microsoft.public.vc.mfc newsgroup where I hang out. Sure enough, David Lowndes replied within minutes with the solution, which I have incorporated into the answer below. Thanks, and a Tip Of The Flounder Fin to David.

David's suggestion was to use SetConsoleTitle to set a window title for the window, then use FindWindow to find it. In order to guarantee the name is unique, he also suggested using a GUID (my favorite technique) for the window name, since that guarantees that no other window will have that name!

HWND FindConsoleHandle()
{
   static LPCTSTR temptitle = _T("{98C1C303-2A9E-11d4-9FF5-006067718D04}");
   TCHAR title[512];
   if(GetConsoleTitle(title, sizeof(title)/sizeof(TCHAR)) == 0)
      return NULL;
   SetConsoleTitle(temptitle);
   HWND wnd = FindWindow(NULL, temptitle);
   SetConsoleTitle(title);
   return wnd;
}

To invoke the MessageBox, just use the HWND returned from this function as the HWND for the parent window.

For example, I am now able to execute the following in a plain-vanilla console app:

int response = MessageBox( FindConsoleHandle(), 
                           _T("File read error, continue?"), 
                           _T("File Error"), 
                           MB_ICONERROR | MB_YESNO);

Be sure to replace the GUID above with a GUID of your own that you get from GUIDGEN; otherwise you lose the desired uniqueness.

This should work equally well for operations like standard dialogs such as File Open, File Save, and even custom dialogs of your own. Note that it won't work for modeless dialogs, because they don't have their own message pump.


The views expressed in these essays are those of the author, and in no way represent, nor are they endorsed by, Microsoft.

Send mail to newcomer@flounder.com with questions or comments about this web site.
Copyright © 1999 CompanyLongName All Rights Reserved.
www.flounder.com/mvp_tips.htm

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Joseph M. Newcomer



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThere is always an easier way Pinmemberbdawson@newcorp.com8:26 22 Feb '06  
General? What about the other way around PinmemberSynetech18:18 4 Dec '03  
GeneralLet me know too, please! PinsussAnonymous2:44 3 Apr '04  
GeneralRe: Let me know too, please! Pinmemberbaker_tony2:46 3 Apr '04  
GeneralRe: ? What about the other way around PinmemberJoseph M. Newcomer7:13 3 Apr '04  
GeneralRe: ? What about the other way around PinmemberWasteland721:24 6 May '04  
GeneralRe: ? What about the other way around Pinmembercowsonfire1:42 22 Feb '06  
GeneralBeeter way to get HWND of parent PinmemberMLoibl8:00 16 Feb '01  
Generala missing thing PinmemberMLoibl22:58 16 Feb '01  
GeneralRe: Beeter way to get HWND of parent PinmemberLim Bio Liong20:07 8 Jan '02  
GeneralRe: Beeter way to get HWND of parent PinmemberWasteland721:20 6 May '04  
GeneralYou don't need all this code Pinsusslandshark3:55 7 Jun '00  
GeneralRe: You don't need all this code PinsussGene7:34 18 Jul '00  
GeneralEast is east... PinsussRavi Bhavnani9:18 6 Jun '00  
GeneralRe: dialogs in console apps PinsussGisle Vanem22:05 24 May '00  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 24 May 2000
Article Copyright 2000 by Joseph M. Newcomer
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid