application fails to run when brought over to another pc
I'm able to run my application on my development pc but 开发者_C百科when I copy the whole release folder over to another pc, I click on the exe and it shows "The application failed to initialize properly (0x050002).
Does anyone know what's wrong?
I tried to bring all the related DLLs over but still can't get rid of the error. BTW I'm using Visual C++ 2008.
You must install Visual C++ 2008 SP1 Redistributable Package on that computer.
0x050002
- Probably some component (like MSMQ service) is not installed or not-running, which is required by your application.
精彩评论