主要造成这个问题的主要原因是,在打了SP1的VS2008下创建的项目放在没有打SP1的VS2008下就会报错
解决办法:
一.给VS2008打上SP1补丁即可
此方法比较彻底,但是安装较慢,占用空间较大,消耗1G多的磁盘空间
二.注释掉相关调用
文件stdafx.h中可以找到相关调用:#include <afxcontrolbars.h>
a.注释掉该行
b.添加:#define CWinAppEx CWinApp
即:
//#include <afxcontrolbars.h> // MFC support for ribbons and control bars #define CWinAppEx CWinApp