Full screen window in MFC ?

Hello, I wanna make full screen window in MFC application.
That means, I wanna make window, which will have content placed on whole screen, like it is in all 3D Games.
I'm using CreatEx function, but I cannot find valid configuration.
Can you help me please ?
Not an MFC-specific answer, but in WIN32 you use ChangeDisplaySettings with CDS_FULLSCREEN

ChangeDisplaySettings
http://msdn.microsoft.com/en-us/library/dd183411%28v=vs.85%29.aspx

Andy

P.S. An example of ChangeDisplaySettings in action:
http://www.philvaz.com/games/Vazteroids.cpp
Last edited on
No no, I have already done :) Just change style of window to WS_POPUP and it's done :)
But thanks for help :)
Topic archived. No new replies allowed.