多文档建立的时候总是先弹出一个框
能不能不要一开始就弹出啊
就是点击new以后在弹出子框啊
因该怎么办啊????

解决方案 »

  1.   

    在程序的InitInstance中的ProcessShellCommand函数之前加入: cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing
      

  2.   

    InitInstace中
    CCommandLineInfo cmdInfo;
    ParseCommandLine(cmdInfo); // Dispatch commands specified on the command line
    if (!ProcessShellCommand(cmdInfo))
    return FALSE;
    删除
    我没有添加任何代码在 csdn9.cpp的91到95行
      

  3.   

    InitInstace中
    CCommandLineInfo cmdInfo;
    cmdInfo.m_nShellCommand=CCommandLineInfo::FileNothing;
    ParseCommandLine(cmdInfo);