MFC学习 第01个程序,该怎么解决
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;
------解决方案--------------------
什么情况?
------解决方案--------------------
楼主你想怎么样?
#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;
------解决方案--------------------
什么情况?
------解决方案--------------------
楼主你想怎么样?