Visual C++ >> GUI >> MFC

解決"Cannot open file: afxcontrolbars.h"問題


在Visual Studio C++ 2008編譯程式發生cannot open include file: 'afxcontrolbars.h'錯誤的解法有:
1. 安裝VS2008 SP1
2. 把如下程式

#include <afxcontrolbars.h>

改成

// #include <afxcontrolbars.h>
#define CWinAppEx CWinApp


返回上一頁