This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.
-
Hi I have a app which it build by VC++.When running it in my computer show message This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. but run it other computer fine it. My Computer have a C++ 2008 Redistributable. Help me
-
Hi I have a app which it build by VC++.When running it in my computer show message This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. but run it other computer fine it. My Computer have a C++ 2008 Redistributable. Help me
reza toorani wrote:
My Computer have a C++ 2008 Redistributable.
You need to install the redistributable package on the target computers too. You can download it from here[^]
Cédric Moonen Software developer
Charting control [v3.0] OpenGL game tutorial in C++ -
reza toorani wrote:
My Computer have a C++ 2008 Redistributable.
You need to install the redistributable package on the target computers too. You can download it from here[^]
Cédric Moonen Software developer
Charting control [v3.0] OpenGL game tutorial in C++I install redistributable package but give me error message
-
Hi I have a app which it build by VC++.When running it in my computer show message This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. but run it other computer fine it. My Computer have a C++ 2008 Redistributable. Help me
-
you have mixes version of the dlls. The installed dlls are others than the building dlls. Use the service pack level and/or check the manifest. tip: dependency walker Press F1 for help or google it. Greetings from Germany
Thanks I download Dependency Walker files and load .exe appliaction file.error MSVCR80D.DLL file. I download this file and copy the root application.but give me error message.
-
Thanks I download Dependency Walker files and load .exe appliaction file.error MSVCR80D.DLL file. I download this file and copy the root application.but give me error message.
-
Do you see the big fat "D" in the dll name. It is a debug build. :doh: Press F1 for help or google it. Greetings from Germany
the dll name is DT.dll I think that "d" is for dll name. If it is a debug build,What do I?
-
the dll name is DT.dll I think that "d" is for dll name. If it is a debug build,What do I?
Ypu wrote "I download Dependency Walker files and load .exe appliaction file.error MSVCR80D.DLL file." that means your app or some dlls is referring to a debug dll. You need a release build of that file. Press F1 for help or google it. Greetings from Germany
-
Ypu wrote "I download Dependency Walker files and load .exe appliaction file.error MSVCR80D.DLL file." that means your app or some dlls is referring to a debug dll. You need a release build of that file. Press F1 for help or google it. Greetings from Germany
this application fine work in other computers.
-
this application fine work in other computers.
If depends.exe says that your application links to
MSVCR80D.DLL
, it means that the application is a debug build. Do you have Visual Studio 2005 installed on the computers where the application run properly, but not installed on the computer where it doesn't starts? Remember that the debug versions of the C/C++ runtime libraries are provided with Visual Studio but they are not redistributable.