If you aren't using MFC and want it to start maximized, do what xwb said. If you are using MFC with SDI or MDI and want it to start maximized, override CMainFrame's ActivateFrame and change
CFrameWnd::ActivateFrame(nCmdShow);
to
CFrameWnd::ActivateFrame(SW_MAXIMIZE);
If you want it to actually be full screen like a game, that's more difficult, say so and I'll help you with that.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.