How can I meke a full screen application? Thanks.
younger yang
Printable View
How can I meke a full screen application? Thanks.
younger yang
Hi there!
I assume you are refering to a SDI or MDI application. If so,look at the following exemple:
BOOL CMyApp::InitInstance()
{
...
// The main window has been initialized, so show and update it.
// Insert the following line to have your app full screen...
m_nCmdShow=SW_SHOWMAXIMIZED;
pMainFrame->ShowWindow(m_nCmdShow);
pMainFrame->UpdateWindow();
...
}
I hope this help...
If not contact me...
Denis Lavoie
"JedyMaster"
[email protected] (Home)
[email protected] (Job)