Thats the thing... I've already converted the .sln to Visual C++ Express 2010 and compiled it. It said everything worked minus 2, but then it stated the wx thing wouldn't work in the tutorial. (Noter only 5 DLL's ever work, 13 fail)
I can now get the program to run in Release. It displays
1.08098e-006
0.499993
0.999991
1.4999
1.9999
2.4999
3
3.4999
3.9999
4.4999
5
The output reads
'SFML 2.exe': Loaded 'C:\Documents and Settings\Damian\My Documents\Visual Studio 2010\Projects\SFML 2\Release\SFML 2.exe', Symbols loaded.
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\Documents and Settings\Damian\My Documents\Visual Studio 2010\Projects\SFML 2\Release\sfml-system.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.4974_x-ww_d889290f\msvcp90.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\WinSxS\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.30729.4974_x-ww_d889290f\msvcr90.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\msvcp100.dll', Symbols loaded.
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\msvcr100.dll', Symbols loaded.
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\apphelp.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\version.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\advapi32.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\rpcrt4.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\secur32.dll', Cannot find or open the PDB file
The program '[7664] SFML 2.exe: Native' has exited with code 0 (0x0).
However in debug mode nothing works. I get the message
The application failed to initialize properly (0xc0150002). Click on OK to terminate the application
and here is the ouput for that one
'SFML 2.exe': Loaded 'C:\Documents and Settings\Damian\My Documents\Visual Studio 2010\Projects\SFML 2\Debug\SFML 2.exe', Symbols loaded.
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Cannot find or open the PDB file
'SFML 2.exe': Loaded 'C:\Documents and Settings\Damian\My Documents\Visual Studio 2010\Projects\SFML 2\Debug\sfml-system-d.dll', Cannot find or open the PDB file
LDR: LdrpWalkImportDescriptor() failed to probe C:\Documents and Settings\Damian\My Documents\Visual Studio 2010\Projects\SFML 2\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
The program '[6792] SFML 2.exe: Native' has exited with code -1072365566 (0xc0150002).
I complied every type Debug, Debug DLL, Debug Static and same with the Release ones. Everything is linked and the directories are set (dragging the files into the VC just didn't seem to work properly, so opted to use the C:\SFML-1.6\lib and \include method instead). The correct DLL's are in with the executable also (sfml-system-d.dll in debug and sfml-system.dll in release) So I'm not sure why I'm still having problems?