cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
maximised dialog box in MFC
maximised dialog box in MFC
Nov 5, 2008 at 4:36pm UTC
komal
(13)
How do I set the dialog Box to open in maximised mode ?? Basically I'm looking for a command to declare in OnInit() function.
Nov 6, 2008 at 9:22am UTC
Lodger
(128)
From OnInitDialog, call:
ShowWindow(SW_MAXIMIZE);
http://msdn.microsoft.com/en-us/library/72szh9c7.aspx
Topic archived. No new replies allowed.