Moderator: MacroQuest Developers

This is what the wiki says to do. You did it all? Go through it step-by-step again and see if you missed something. I followed this exactly, and had no problems whatsoever with my first "dbl-click" of the solution file.Installation and Setting up the Environment
1. Download the Setup program here (link may change never know with MS) and install it.
2. Download SDK files from here. Install It.
3. Open VS2005 Express:
1. From the Tools drop down menu, select Options...
2. Expand the "Projects and Solutions" tree and select "VC++ Directories"
3. In the right window from the "Show Directories for" drop down menu select the following items and add the paths below:
* Executable files: C:\Program Files\Microsoft Platform SDK\Bin
* Include files: C:\Program Files\Microsoft Platform SDK\include
* Library files: C:\Program Files\Microsoft Platform SDK\lib
4. Make sure the directories you just entered are at the top of the list. If not, use the Up or Down arrows to put them in the correct order.
5. Alternately, you can double click on the existing Microsoft Platform SDK references that VC Express installed and edit them to point to the path you installed your Microsoft Platform SDK to.
* Either way, you want only one reference to the MS Platform SDK for each item. You should remove any duplicate references to a Microsoft Platform SDK directory.
4. If you installed using default directories, navigate to C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults and edit corewin_express.vsprops, changing the following:
* Change AdditionalDependencies="kernel32.lib" to
* AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib"
5. Navigate to C:\Program Files\Microsoft Visual Studio 8\VC\VCWizards\AppWiz\Generic\Application\html\1033\ and edit AppSettings.htm, commenting out lines 441-444 like this:Code: Select all
// WIN_APP.disabled = true; // WIN_APP_LABEL.disabled = true; // DLL_APP.disabled = true; // DLL_APP_LABEL.disabled = true;

But I believe I did it correctly.* Executable files: C:\Program Files\Microsoft Platform SDK\Bin
* Include files: C:\Program Files\Microsoft Platform SDK\include
* Library files: C:\Program Files\Microsoft Platform SDK\lib




You're missing the closing for your Tool Name tag.exswitch wrote:Ok i got corwin_express thing opened using notepad then i deleted the old thing by AdditionalDependencies and typed the new one exactly like it says,,but when i go to load up the compiler i get a Project Load Failure. I even went back and tryed "kernel32.lib" but that didnt even work.
shouldnt it look like this
<?xml version="1.0"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="Core Windows Libraries">
<Tool
Name="VCLinkerTool"
AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib"
</VisualStudioPropertySheet>
Code: Select all
AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib"
Code: Select all
AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib" />
Code: Select all
<?xml version="1.0"?>
<VisualStudioPropertySheet
ProjectType="Visual C++"
Version="8.00"
Name="Core Windows Libraries">
<Tool Name="VCLinkerTool"
AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib" />
</VisualStudioPropertySheet>