MFC学习 第01个程序,该怎么解决

MFC学习 第01个程序#include afxwin.hclass CMyApp : public CWinApp{public:BOOL virtual InitInstance

MFC学习 第01个程序
#include <afxwin.h>


class CMyApp : public CWinApp
{
public:
BOOL virtual InitInstance();
};



BOOL CMyApp::InitInstance()
{
::MessageBox(NULL, TEXT("This is a test"), TEXT("Test"), MB_OK);
return true;
}

CMyApp theApp;

[解决办法]
什么情况?
[解决办法]
楼主你想怎么样?