How to cover MDI view screen??
C / C++ / MFC
4
Posts
2
Posters
0
Views
1
Watching
-
Hi, I have a MDI program, and I would like to cover the view screen at the startup; Meaning, at the startup I only want the toolbar and menu bar to be shown Ehsan Behboudi
-
like this in InitInstance: // DON'T display a new MDI child window during startup!!! cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing; if (!ProcessShellCommand(cmdInfo)) return FALSE;
-
like this in InitInstance: // DON'T display a new MDI child window during startup!!! cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing; if (!ProcessShellCommand(cmdInfo)) return FALSE;