Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Fullscreen

Status
Not open for further replies.

hoschi

Programmer
Mar 5, 2002
1
US
How can I realize a fullscreen VC++ Application?
 
For MFC - based applications, go to Function InitInstance() (is in CWinApp - derived class) and replace the line
pMainFrame->ShowWindow(m_nCmdShow);
with the line:
pMainFrame->ShowWindow(SW_SHOWMAXIMIZED);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top