Hi!
This could sounds silly, but how can I in MFC SDI app (or using
MFC, but
without any wizard or creator) create a window that covers full screen?
Well, to do this in my CFrameWnd derived class in constructor I write:
Create(NULL,"Some string that won't be displayed",
WS_MAXIMIZE|WS_POPUP|WS_CLIPCHILDREN); //it's full screen...
...but I don't like this code, I'm sure that it's other way to make a
full-screen app.
How can I achieve this?
Thanks
JC