Visual Studio 6 C++ Crash in Windows 8.1 [duplicate]

非 Y 不嫁゛ 提交于 2019-12-03 16:54:03

I had the same problem but this is how I got around it.

I installed Daffodil from codeplex (http://daffodil.codeplex.com/) and then opened my VC++ project in VS2010 (go through project upgrade routine). Right click on the properties of your project (not the solution) and go to the 'Configuration Properties', 'General' section. Change the 'Platform Toolset' to v60 and your project will now compile with the VC++6 compiler. Note: you must have VC++6 installed - see the Daffodil documentation. Now you can use the VS2010 IDE to compile all your VC++6 code!

SteveR

I have been successful with another method (similar to the method of @szc982):

  1. Go to "C:\Program Files (x86)\Microsoft Visual Studio\Common\MSDev98\Bin"
  2. Rename "MSDEV.exe" into "MSDEV-S.exe" (or any other name)
  3. Right-Click on "MSDEV-S.exe" > Properties > Compatibility > Change Settings for all users
  4. Check "Disable display scaling on high DPI settings" and click on "OK"
  5. Go to "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Microsoft Visual C++ 6.0"
  6. Right-Click on the shortcut "Microsoft Visual C++ 6.0" and change the target to "MSDEV-S.exe"

Hope it helps

Note: Be sure when you install VC 6 to perform a custom installation and uncheck "Data Access".

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!