|
-
March 29th, 1999, 02:21 AM
#1
Disable first window in MDI app.
When I run my MDI application, an empty window opens. How do I prevent this from happening?
Thanks,
Sean.
-
March 29th, 1999, 05:09 AM
#2
Re: Disable first window in MDI app.
In your application's InitInstance add the following line:
CCommandLineInfo cmdInfo;
cmdInfo.m_nShellCommand = cmdInfo.FileNothing;
ParseCommandLine(cmdInfo);
This will turn off the "File New" that is the defauilt for initialised CCommandLineInfo objects.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|