You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers. No questions about C++ programming or topics which are answered in the tutorials!
You just need to take one more step(..) You need to edit the corewin_express.vsprops file (found in C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults) and change the string that reads:
Hmm... I had the same error and adding libs didn't solve the problem. In the end I went into CSoftwareDriver.cpp and duplicated the code near the bottom:
It simply can't find the routine createSoftwareDriver2 when it tries to link. So I just gave it a dummy one based on the createSoftwareDriver function since I don't expect to use any of the software video drivers...
Go to : C:\Program Files\Microsoft Visual Studio 8\VC\VCProjectDefaults
open "corewin_express.vsprops" (XML-File)
replace
AdditionalDependencies="kernel32.lib"
with
AdditionalDependencies="kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib"
oh yes! you're right on that one too. Irrlicht's 0.14 VC8 project has got some errors so opening and converting the 7.1 project will compile with no problems.