Error message: "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem."
Basically, I recently purchased a game programming book, and was trying to follow along. The book uses the Allegro game library, and I was trying to configure a Visual C++ 8.0 project to compile and link to the library.
First, I installed Allegro 4.2 by copying the lib and include folders to the Visual C++ installation folder, as well as the dll files in the bin folder to the System32 folder. I then created a test project, wrote a simple program to make sure the compiler is configured properly, and followed the instructions afterwards (Projects -> Properties -> Configuration Properties -> Linker -> Input -> Dependencies; type alleg.lib). But when I tried to run it, I got the message titled "Test 1.exe - Unable To Locate Component," which says, "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem." I tried to uninstall and re-install Visual C++, but kept getting the same error message.
Then, I was lucky enough to have found a link where you can download DLL files (dll-files.com). So, I downloaded the file msvcr80.dll and copied it in the same folder as the main cpp file, and got a runtime error this time:
"Runtime Error!
Program: c:\programming tests\test1\deb ug\Test 1.exe
R6034
An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information."
Finally, I downloaded what I think is the runtime dll installer (they call it Microsoft Visual C++ 2005 Redistributable Package (x86)) from this link. (Can someone tell me if it's the correct link?) Because I deleted the dll file that I have manually copied, ran the runtime dll installer, but ended up with the original error message ("The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem").
I tried to Google this problem, but wasn't able to find a solution. So far, I'm stuck in the configuration part, and cannot use the rest of the book until that's been taken care of. So if anyone knows how to fix this, I would greatly appreciate it.
Thank you.
Basically, I recently purchased a game programming book, and was trying to follow along. The book uses the Allegro game library, and I was trying to configure a Visual C++ 8.0 project to compile and link to the library.
First, I installed Allegro 4.2 by copying the lib and include folders to the Visual C++ installation folder, as well as the dll files in the bin folder to the System32 folder. I then created a test project, wrote a simple program to make sure the compiler is configured properly, and followed the instructions afterwards (Projects -> Properties -> Configuration Properties -> Linker -> Input -> Dependencies; type alleg.lib). But when I tried to run it, I got the message titled "Test 1.exe - Unable To Locate Component," which says, "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem." I tried to uninstall and re-install Visual C++, but kept getting the same error message.
Then, I was lucky enough to have found a link where you can download DLL files (dll-files.com). So, I downloaded the file msvcr80.dll and copied it in the same folder as the main cpp file, and got a runtime error this time:
"Runtime Error!
Program: c:\programming tests\test1\deb ug\Test 1.exe
R6034
An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team for more information."
Finally, I downloaded what I think is the runtime dll installer (they call it Microsoft Visual C++ 2005 Redistributable Package (x86)) from this link. (Can someone tell me if it's the correct link?) Because I deleted the dll file that I have manually copied, ran the runtime dll installer, but ended up with the original error message ("The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem").
I tried to Google this problem, but wasn't able to find a solution. So far, I'm stuck in the configuration part, and cannot use the rest of the book until that's been taken care of. So if anyone knows how to fix this, I would greatly appreciate it.
Thank you.
Comment