做了个MDI,
在CXXApp的InitInstance()中,设置了主框架的WindowText: 
    pMainFrame->SetWindowText("MyDemo V1.0");
但是在File->New后,框架的名字就变了...我试图在CXXView里的OnInitUpdate中重新设置:
          CFrameWnd* pWnd = this->GetParentFrame();
if (pWnd != NULL)
pWnd->SetWindowText(_T("Try again"));
else
AfxMessageBox("wrong");
可惜不成功,也没弹出"wrong"的对话框,真是晕死了.我的原始目的是想让这个MDI的框架名字一直都是MyDemo V1.0,请高手帮忙,多谢了,先~~~~~