In general, the steps to getting MSVC++ 2005 to work should be something along the lines of
- Create a new Solution, using a Win32 Console Project
- Right-Click on the project's name in the solution explorer, choose properties.
- In the Configuration Properties Window, look for the option to
disable precompiled headers (Under the C/C++ Configuration properties)
- Get rid of stdafx.h and all that rubbish
- use the simplest possible program to test whether you've set it up correctly (you can tell by whether the program compiles) this one will do
- Hold [CTRL] and press [F5] to compile & run. (Console Window won't auto-close - this is the 'compile without debugging' mode)
- or, [F7] to build it without running
- if you need the .exe file, look in the project's folder on your computer, in Windows Explorer. The .exe file will be named after the solution.