How to debug with Visual C++ 6 on Windows 7 x64?

前端 未结 5 361
南方客
南方客 2021-01-03 03:02

Surely the answer will be \"you can\'t\" or \"use XP mode\", but I\'d like to know if it it possible.

The issue I have is that whenever I debug some application and

相关标签:
5条回答
  • 2021-01-03 03:16

    My previous fix was horrible.

    Finally, I developped a new fix, working perfectly with the english version of Visual Studio 6. (SP6 I think)

    You need to check the version of the file DM.dll located into "Common/MSDev98/Bin"

    The correct version is 6.0.9782.0.

    link: http://www.dr-hoiby.com/TLLOC.dll (28KB)

    how to install: replace "Common/MSDev98/Bin/TLLOC.dll" by the version downloaded.

    Best regards.

    0 讨论(0)
  • 2021-01-03 03:17

    On the heels of Dr Holby, I implemented a leaner variant, with source code: http://www.algonet.se/~tamlin/TLLOC_fixer.zip

    The code currently only understands sp4 (?) and SP6, but I think it'll cover most cases.

    You only need to compile the source (1.cpp, 1.rc), rename your existing TLLOC.DLL (which btw stands for Transport Layer Local - as opposed to remote debugging) to TLLOC.old.dll, and drop in the one you compiled (~4KB). Should work like a charm for all 32-bit debugging needs, from Windows 95 to Windows 7 (and later).

    0 讨论(0)
  • 2021-01-03 03:27

    Comment reposted:

    You can try using Visual Studio 2008 with VC6 compiler. I recently blogged about this.

    0 讨论(0)
  • 2021-01-03 03:29

    Another option would be to install daffodil. This is an open source project to compile all versions of visual studio in VS2010. Once this is configured you can use visual studio 2010 debugger to debug VC6 projects.

    0 讨论(0)
  • 2021-01-03 03:31

    I developped a little fix for that. You just have to copy the file "ShiftF5Fix.dll" into "Common/MSDev98/AddIns/" et load it from Visual.

    It's an hugly fix. If you modify your source file during debugging you have you answer "NO" to the poup displayed after you press "SHIFT+F5" to stop the process.

    link : http://www.dr-hoiby.com/ShiftF5Fix.dll

    Best regards

    0 讨论(0)
提交回复
热议问题