zoukankan      html  css  js  c++  java
  • VS2008提示无法打开包括文件:“afxcontrolbars.h”解决办法

    主要造成这个问题的主要原因是,在打了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  
  • 相关阅读:
    模拟测试69
    模拟测试68
    模拟测试66
    NOIP模拟测试15
    NOIP模拟测试14
    Gekoo's checker
    NOIP模拟测试13
    替罪羊树模板
    KDTree笔记
    NOIP模拟测试12
  • 原文地址:https://www.cnblogs.com/seer/p/4447706.html
Copyright © 2011-2022 走看看