News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

missing MSVCP71.DLL

Started by Sparafusile, January 21, 2011, 11:41:12 PM

Previous topic - Next topic

Sparafusile

I have an application I'm developing that uses sqlite to store data in a database. When I run the application on my development system, everything goes fine. When I run it on any other "generic" computer, I get the following error:

QuoteThis application has failed to start because MSVCR71.dll was not found. Re-installing the application may fix this problem.

From what I understand this dll comes in Visual Studio. I know I can copy these files into the system32 folder. That would work for me, but my clients are corporate employees who might have access to that folder or simply not want to go through the hassle of messing with dll files. How can I continue to write my application with sqlite and not require that the clients have access to system32 and/or be willing to mess with dll files?

Antariy

Quote from: Sparafusile on January 21, 2011, 11:41:12 PM
I have an application I'm developing that uses sqlite to store data in a database. When I run the application on my development system, everything goes fine. When I run it on any other "generic" computer, I get the following error:

QuoteThis application has failed to start because MSVCR71.dll was not found. Re-installing the application may fix this problem.

From what I understand this dll comes in Visual Studio. I know I can copy these files into the system32 folder. That would work for me, but my clients are corporate employees who might have access to that folder or simply not want to go through the hassle of messing with dll files. How can I continue to write my application with sqlite and not require that the clients have access to system32 and/or be willing to mess with dll files?

If you're placing this dll into folder with executable file of the program, this is not helps?

hutch--

Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

Sparafusile