BOOL CBmpFrameWorkApp::InitInstance()
{
... ...
//启动时不自动打开一个空文档
cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing;
... ...
}
只需我们在APP类中的InitInstance()中修改cmdInfo的成员m_nShellCommand为 CCommandLineInfo::FileNothing即可,默认为FileNew。
CCommandLineInfo::m_nShellCommand的成员是一个枚举类型
enum { FileNew, FileOpen, FilePrint, FilePrintTo, FileDDE, AppUnregister, FileNothing = –1 } m_nShellCommand;