Click here to Skip to main content
15,886,110 members
Articles / Programming Languages / C++

Hide / Minimize a Dialog on Startup

Rate me:
Please Sign up or sign in to vote.
3.69/5 (6 votes)
8 Apr 2009CPOL 30.7K   19   3
How to hide/minimize a dialog on startup

Have you ever tried to minimize a dialog during the startup of a dialog based application? The problem is that in a dialog based application, we will not get the control after the dialog is completely created. Even a call to ShowWindow() from the OnInitDialog() function will not work. So what will we do if we have such a requirement? Well I got a simple technique for doing this by modifying the InitInstance() function of the app class.

The code for creating a dialog in the InitInstance() function will look like this:

C++
CDialogBasedDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();

My idea is to change this code a little as follows:

C++
CDialogBasedDlg dlg;
if(dlg.Create( CDialogBasedDlg::IDD ))
{
   dlg.ShowWindow( SW_HIDE );
   m_pMainWnd = &dlg;
   INT_PTR nResponse = dlg.RunModalLoop();
}

Actually inside the MFC Framework, the DoModal() function calls the CreateDlgIndirect() and then RunModalLoop(). It also handles the tasks such as disabling the parent window etc. In our case, the dialog itself is the parent window so we don't have to worry about such things.

This article was originally posted at http://0memory.blogspot.com/feeds/posts/default?alt=rss

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralThank You Pin
thanatos_mx5-Sep-14 8:36
thanatos_mx5-Sep-14 8:36 
Generala question Pin
f.s.j8-Apr-09 15:53
f.s.j8-Apr-09 15:53 
GeneralRe: a question Pin
Naveen8-Apr-09 17:49
Naveen8-Apr-09 17:49 

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

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