user1390672
user1390672

Reputation: 59

32 bit application working on 64 bit OS

we have developed a application on 32 bit windows using vc++ express 8 edition... Now, while executing this application on windows 64 bit os, we are getting the following error"CreateProcess error=14001, The application has failed to start because its side-by-side confi guration is incorrect. Please see the application event log or use the command-l ine sxstrace.exe tool for more detail"

now, can you pls help in fixing this above said problem?

I followed some of the links from stackoverflow and couldn't fix the problem.

Upvotes: 1

Views: 304

Answers (2)

Prof. Falken
Prof. Falken

Reputation: 24867

As Simon pointed out, you need to make sure the runtime for your compiler is installed, or you could link your EXE statically.

Upvotes: 0

Matt
Matt

Reputation: 6050

You need install the correct version of VC runtime, it means you should install the Visual C++ 2008 Redistributable Package to the target machine. You can download it from here

Upvotes: 2

Related Questions