将MainFrame.cpp里的
static UINT indicators[] =
{
ID_SEPARATOR,           // status line indicator
         ID_INDICATOR_CTRL,
ID_INDICATOR_NUM,
ID_INDICATOR_SCRL,
};
改为:
static UINT indicators[] =
{
ID_SEPARATOR,           // status line indicator
ID_FTP_REPORT,  //这个ID已定义
};
则在程序初始化阶段发生如下错误:
Failed to create empty document.
但是,如果注释掉"ID_FTP_REPORT,",即
static UINT indicators[] =
{
ID_SEPARATOR,           // status line indicator
//ID_FTP_REPORT,  //这个ID已定义
};
则运行通过。
请问这是怎么回事?
ps:事实上,我把视类中所有与文档有关的都注释掉了。但,即使把视类改回来无
   还是不行。