
VS2005
文章平均质量分 77
pacewalker
这个作者很懒,什么都没留下…
展开
-
VC6和VS2005(及2010)的一些区别总结
VC6.0与VS2005的一些差别分类: 一、 VC 6.0 中的 MFC ClassWizard 从 Visual Studio 2005 开始已被分拆成两个功能:1. 对控件和菜单建立事件映射的功能菜单视图 (View)->Solution Explorer 或 Ctrl+W,S 中 Resource Files 树下,在资源视图(通过双击资转载 2011-11-08 09:10:40 · 1424 阅读 · 0 评论 -
VC++ MSDN中的 _beginthreadex与_endthreadex 的使用例子
1._beginthread, _beginthreadex .用于创建线程uintptr_t _beginthread( void( *start_address )( void * ), unsigned stack_size, void *arglist );uintptr_t _beginthreadex( //推荐使用 void *security,原创 2011-11-08 10:50:28 · 11995 阅读 · 0 评论 -
defaultlib "library" conflicts with use of other libs; use /NODEFAULTLIB:library
Linker Tools Warning LNK4098defaultlib "library" conflicts with use of other libs; use /NODEFAULTLIB:libraryYou are trying to link with incompatible libraries.Important The run-time librari转载 2012-03-07 10:57:34 · 1054 阅读 · 0 评论 -
VC2005中MFC程序的部署问题
VC2005中MFC程序的部署问题在VC6中,Release版本的程序的部署,除了程序自身关联的各个Dll之外,只需添加MFC42.dll即可。在VC2005中,发生的变化包括:1.MFC的版本发生变化,最新的版本为8.0,所有应该包括MFC80.dll2.在VC2005的架构下,采用manifest进行dll的版本确认,因此需要添加MFC程序所需的ma转载 2012-04-09 14:36:27 · 1404 阅读 · 0 评论