QUOTE(ressurectionx @ Mar 8 2008, 02:37 AM)

"Select Project / Link from the Visual C++ IDE menu and add "d3d8d.lib" to the Object/Library Modules."
There is no "Link" option under "Project"
Click the project in the 'Solution Explorer' (On the right of the IDE)
Project -> 'projectname' Properties -> Linker -> Input
By the way the d3d8d.lib should be included by default.
Your compile problems with arcades are possibly due to files like xbapp/xbfont/xbinput etc. not being found, if that's the case then try the following:
Note: While there may be better ways to fix this, here is how I've managed tacked said problem before.
Add this directory:
Microsoft Xbox SDK\Samples\Xbox\Common\Include
To here:
Project -> 'projectname' C/C++ -> General -> Additional Include Directories
(Remember to first click the project in the 'Solution Explorer' or make sure it's already selected)
If that doesn't fix it, then try this afterwards:
-Remove all the common include files from the project (using solution explorer)
Don't forget to make a note of all the ones you removed.
-Right click the folder in solution explorer that the common files were in
-Click add -> add existing item
-Add all the cpp/h files from here:
Microsoft Xbox SDK\Samples\Xbox\Common\Include
Microsoft Xbox SDK\Samples\Xbox\Common\Src
KM