//z 2012-12-24 16:31:51 [email protected] .K
在windows 7 x64上调试 vc6 console程序时,按了 shift + f5 ,程序并不结束。解决方法:
替换这个文件 TLLOC.dll
www.dr-hoiby.com/TLLOC.dll
//z 2012-12-24 16:31:51 [email protected] .K
这里介绍了如何使用 vs 2008 作为IDE,而使用vc6的编译链接工具
https://resnikb.wordpress.com/2009/10/28/using-visual-studio-2008-with-visual-c-6-0-compiler/
//z 2013-07-28 12:46:40 [email protected] .K[T6,L78,R2,V20]
辛苦装好了win7,却发现VC6调试时总是错误,后来在微软网站找到解决办法:
When you compiling VC6 project, can you check: Project / Settings / Link tab / Debug category?
Please make the following settings are correct:
1. Debug info
checked
2. Microsoft format
checked
3. Separate types
unchecked (By default it is checked)
也就是在把工程调试选项里的“个别类型”这个选项去掉就可以正常调试了。
终极解决方法:检查文件DM.dll版本,DM.dll在程序安装目录的“Common/MSDev98/Bin”-----------正确的版本是6.0.9782.0。
还有人说这样也能解决的:
辛苦装好了win7,却发现VC6调试时总是错误,后来在微软网站找到解决办法:
When you compiling VC6 project, can you check: Project / Settings / Link tab / Debug category?
Please make the following settings are correct:
1. Debug info
checked
2. Microsoft format
checked
3. Separate types
unchecked (By default it is checked)
也就是在把工程调试选项里的“个别类型”这个选项去掉就可以正常调试了。