
错误分析
文章平均质量分 63
buding000001
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
error C2665: 'AfxMessageBox' : none of the 2 overloads could convert all the argument types
AfxMessageBox(("please enter number")); 错误 error C2665: 'AfxMessageBox' : none of the 2 overloads could convert all the argument types 用的是vc2005 解答: VS2005编译器的检查更严格了,在vc6和vc7种可以编译通过的语句:AfxMessag原创 2013-03-29 14:35:26 · 2766 阅读 · 0 评论 -
error C3872: '0x3000': this character is not allowed in an identifier
拷贝粘贴文档,由于文档中的中文字符,符号,标点,全角半角等问题,常出现一下几个错误 error C3872: '0x3000': this character is not allowed in an identifier error C2146: syntax error : missing ';' before identifier error C2065: ' ' : undec原创 2013-04-10 13:12:18 · 1044 阅读 · 0 评论 -
VC2005调试时错误“No Debugging Information”
解决方法: 菜单里Project->property->Linker->Debugging, "Generate Debug Info" 一项后下拉菜单选"Yes(/DEBUG)" 下面是从网上找到的一篇文章,写的很详细,转过来看看 转自:http://hi.baidu.com/wytzsjzly/blog/item/9f993a97afdc606755fb9686.html 今原创 2013-04-11 10:02:29 · 1222 阅读 · 0 评论 -
重写窗体关闭事件protected override void OnFormClosing(FormClosingEventArgs e)遇到的错误
重写窗体点击X时的关闭事件 protected override void OnFormClosing(FormClosingEventArgs e) { base.OnFormClosing(e); if (e.CloseReason == CloseReason.WindowsShutDown) return;原创 2013-04-15 14:55:59 · 2227 阅读 · 0 评论 -
vs2005 C++ 空工程设置断点无效的问题
新建空白工程时,突然发现程序设置断点不能使用。 解决方法如下: 工程属性-->Configuration Properties-->Linker-->Debugging-->Generate Debug Info (Yes/DEBUG) 工程属性-->Configuration Properties-->C/C++-->Debug Information Format (C7 Compati原创 2013-04-25 13:44:13 · 858 阅读 · 0 评论