I am trying to compile a simple 32-bit Hello World application written in C using Visual Studio 2010 on a 64-bit machine in a new installation of Windows 7. I also installed the "Windows SDK for Windows 7 and .NET Framework 4" after installing Visual Studio. I created the application by selecting "Win32" as the platform. It works on Windows 7, but if I run the application on my 32-bit machine with Windows XP Professional (this is a new version, without software and service packs), it seems that I cannot get this error:
"This application has failed to start because msvcr100.dll was not found"
If this may be useful, Dependency Walker detects 2 errors (see related image for details):
"Error: At least one module has an unresolved import due to a missing export function in an implicitly dependent module."
"Error: Modules with different CPU types were found."
http://img820.imageshack.us/img820/4725/errordp.png (PIcture)
How can i solve this? Thank!
source
share