error RC2176 : old DIB in resicon3.ico; pass it through SDKPAINT?(错误 RC2176:resicon3.ico 中的旧 DIB;通过 SDKPAINT 传递它?)
问题描述
这个错误是什么,如何解决?我正在使用 Visual Studio 2005 进行智能设备 MFC 开发,是升级到2008可以解决我的问题.
what is this Error, and how to resolve it? I am using Visual studio 2005 for Smart device MFC developement, Is upgrading to 2008 can solve my problem.
错误 85 错误 RC2176:resicon3.ico 中的旧 DIB;通过 SDKPAINT 传递它
Error 85 error RC2176 : old DIB in resicon3.ico; pass it through SDKPAINT
谢谢
推荐答案
这可能会对您有所帮助:http://www.axis.com/tutorials/vistaicons.html
this might help you: http://www.axialis.com/tutorials/vistaicons.html
看起来 vista 图标现在使用 PNG 标头.该错误有点错误,因为它不是旧的 DIB,它只是一个它无法识别的标头,PNG.
It looks like vista icons now use PNG headers. The error is slightly false though as its not an old DIB its just a header it doesn't recognize, PNG.
该图标是如何创建的?很久以前,Visual C++ 6.0 有自己的小方法来创建图标 .ico 文件.可能不使用PNG所以这可能是要走的路是找到一些程序来模拟它并使用旧的DIB方式创建一个图标.或者升级到 2008 :)
How was that icon created? Long ago Visual C++ 6.0 had its own little way of creating icon .ico files. Probably not using PNG so this might be the way to go is to find some program to emulate that and create an icon using the old DIB way. Or upgrading to 2008 :)
这篇关于错误 RC2176:resicon3.ico 中的旧 DIB;通过 SDKPAINT 传递它?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误 RC2176:resicon3.ico 中的旧 DIB;通过 SDKPAINT 传递它?
基础教程推荐
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 初始化列表*参数*评估顺序 2021-01-01
- CString 到 char* 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
