vs2008 MFC资源编辑添加成员变量向导出现脚本错误的解决方法

来源:互联网 发布:在国内名校就读 知乎 编辑:程序博客网 时间:2024/05/16 00:29

分类: C++ 工具箱

 


装了IE8后,用Visual Studio 2008 添加MFC类时总是提示脚本错误。
解决方案:
1、打开注册表编辑器
2、找到 HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones
3、在Zones下新建一个子项,名称为“1000”(注意不要引号)
4、在"1000"里新建一个 DWORD(32位)的数值,数值名称为 1207,数值数据为 0
5、重启VS
Open regedit (on a 64-bit OS, open the 32-bit regedit)
Under “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet
Settings\Zones”, create a new key called 1000 (if it isn't already there)
Under 1000, create a DWORD entry with:
o   Name = 1207
o   Type = REG_DWORD
o   Data = 0x000000


 转自:http://blog.csdn.net/ypist/article/details/8214598

本文来源于Eddy Blog http://www.rrgod.com/ , 原文地址:http://www.rrgod.com/skill/706.html

0 0