在project-->setting-->Micro$oft foundation classes
Not Using MFC --> Use MFC in a shared DLL
然后在你的程序里包含afxwin.h

解决方案 »

  1.   

    先在Project->Setting中选中使用MFC类,然后将你的程序中所有#include <windows.h>的地方都去掉,加上以下几个头文件#include <afxwin.h>         // MFC core and standard components
    #include <afxext.h>         // MFC extensions
    #include <afxdisp.h>        // MFC Automation classes
    #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
    #ifndef _AFX_NO_AFXCMN_SUPPORT
    #include <afxcmn.h> // MFC support for Windows Common Controls
    #endif // _AFX_NO_AFXCMN_SUPPORT