码迷,mamicode.com
首页 > 其他好文 > 详细

VC问题集锦

时间:2014-12-18 01:34:34      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   io   color   使用   sp   on   div   

1.C++中出现 all references to "SHELL32.dll" discarded by /OPT:REF 怎么办?

解决:1)在Project->Setting->Link选项中的Object/Library modules 中添加 /OPT:NOREF

2)使用 “pragma warning(disable:4098)” 屏蔽该warning

 

2.VS2012,菜单标题栏不显示\t以后的内容,如 编译\tCtrl+F5 (后面的Ctrl+F5不显示)

解决:在CxxApp的InitInstance与ExitInstance中添加一句

this->CleanState(); // 仅在InitInstance中使用一次,然后屏蔽;
                    // ExitInstance用后也屏蔽,否则一直会更新状态视图

 

3.UpdateData()

TRUE: 界面值---->(传给)变量

FALSE: 变量值--->(更新到)界面

 

4.快速显示桌面: win键 + D

  返回上一次位置: Ctrl + -

  返回上一个稳健: Ctrl + ‘Tab‘

  对齐: Alt + F8

 

5.VC6工程改为Unicode

Setting->C/C++->Category-->Preprocessor-->Preprocessor definitions-->_UNICODE

 

6.

 

VC问题集锦

标签:style   blog   ar   io   color   使用   sp   on   div   

原文地址:http://www.cnblogs.com/sylar-liang/p/4170825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!