Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Some of the developers here installed 8.1 last night and when we went to boot up VC6.. and instant crash on the splash screen. We have tried the standard compatibility changes, run as administrator, etc etc and no luck. Anyone else have these issues as well? Have you been able to resolve them anyway?

It worked last night on Windows 8 just fine...

Details on crash.

  1. Go to msdev.exe
  2. Double click msdev.exe
  3. Splash screen opens.
  4. Crash. (Microsoft Developer Studio has stopped working)
like image 607
MTAG11 Avatar asked Dec 08 '22 12:12

MTAG11


2 Answers

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

like image 160
user2902327 Avatar answered Dec 11 '22 02:12

user2902327


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".

like image 27
Jean-Francois T. Avatar answered Dec 11 '22 02:12

Jean-Francois T.