Questions tagged [msvcr90.dll]

36 questions
6
votes
4 answers

How to install MSVCR90D.DLL

How do I install MSVCR90D.DLL? I have a small test DLL(debug mode) that I created a setup project. In my setup project, I included merge modules & policy for vc90_debugcrt_x86.msm, etc. When I install the DLL on my VM, dependency walker still…
ramrocket
  • 105
  • 2
  • 9
5
votes
1 answer

msvcp90.dll depends on wrong msvcr90.dll?

I have a dll project built with VS2008 (amd64). The manifest of the dll say When I load the dll into…
mig
  • 51
  • 3
5
votes
1 answer

How to link against msvcr90.dll with mingw gcc?

How to link against msvcr90.dll with mingw gcc? I tried -lmsvcr90, here's the minimal example: #include int main(int argc, const char *argv[]) { printf("%s\n", "hello"); return 0; } My OS is win7, with mingw gcc 4.5.0 $ gcc…
luikore
  • 750
  • 5
  • 16
4
votes
2 answers

Python cannot open msvcr90.dll

My Windows application embeds Python 2.6 (old I know but that's what we have to work with). It can run basic Python commands but fails trying to execute import ctypes ctypes.WinDLL("msvcr90.dll") I'm getting Error 126 "cannot find DLL". If I plant…
n. m. could be an AI
  • 112,515
  • 14
  • 128
  • 243
2
votes
0 answers

Msvcr90.dll file error

I have build a mfc application. I built it as "Multi-threaded Debug DLL (/MDd)". and I run it. It worked fine. But due to some reasons i have to change it to "Multi-threaded DLL (/MD)". I dit it. and when i run it it give an error The program can't…
fhnaseer
  • 7,159
  • 16
  • 60
  • 112
2
votes
1 answer

OpenCV people detection sample crashes

Compiling peopledetect.cpp goes just fine, but when I try to run the program, it crashes at the line hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector()); The error message: Unhandled exception at 0x74a9ae7a in openCV.exe: 0xC0000005:…
mgrd
  • 21
  • 2
2
votes
3 answers

Why visual studio is linking MSVCR90.dll (x86) on 64 Bit platform?

I'm writing a library for MATLAB (mex-file). While developing I used the debug profile in Visual Studio 2008. Everything is fine in debug mode. MATLAB executes my library correctly. When I switch to relase mode in visual studio, MATLAB is unable to…
KawaRacer
  • 21
  • 1
  • 2
2
votes
1 answer

C++ Application crash where to start looking? MSVCR90.dll

This is a very open ended question and I am really just looking for how to approach locating the issue. The application runs for a day or so and then will crash while being used. The point in the application that it crashes is not the same each…
Mr R
  • 289
  • 1
  • 6
  • 14
2
votes
1 answer

My application won't run because I'm missing MSVCR90.dll, what can I do?

I used the instructions here to create my application. I get this message every time I double click my application after creating it with py2exe: The program can't start because MSVCR90.dll is missing from your computer... I don't know how I'm…
shn
  • 131
  • 1
  • 2
  • 13
2
votes
1 answer

Can you redistribute msvcrtxx.dll from an app build using visual studio express?

When you download visual C++ 2008 express edition, this file exists: ./Microsoft Visual Studio 9.0/VC/redist/x86/Microsoft.VC90.CRT/msvcr90.dll In the file redist.txt it says The following list is a list of files available with Microsoft Visual…
rogerdpack
  • 62,887
  • 36
  • 269
  • 388
2
votes
2 answers

Could not load file or assembly 'Noesis.Javascript, Version=0.0.0.0, Culture=neutral, PublicKeyToken=ae36d046c7f89f85' or one of its dependencies

I have no problem using the Noesis.JavascriptDLL in a console application, but when I use the DLL in my web application in the development server, I get the following error: Could not load file or assembly 'Noesis.Javascript, Version=0.0.0.0,…
migrafik
  • 21
  • 1
  • 3
2
votes
0 answers

MSVCR100.dll, 0xc000007b Python cx_freeze

I finished my first program! I'm having trouble making a binary using Python 3 and cx_freeze. The binary runs on my computer, but on another computer I'm testing it on, I get the message "Can't find MSCVR100.dll". I looked this up, and it appears to…
Turtles Are Cute
  • 3,200
  • 6
  • 30
  • 38
2
votes
1 answer

py2exe - MSVCR90.dll

I am trying to build a Python program with py2exe. I am getting this error when trying to run the built program: The program can't start because MSVCR90.dll is missing from your computer. Try reinstalling the program to fix this problem. I already…
kirbyfan64sos
  • 10,377
  • 6
  • 54
  • 75
2
votes
1 answer

py2exe and msvcr90.dll included by program doesnt work help please

System XP and Win 7 Both python 2.6 and 2.7 I created my .exe with 'bundle_files':1 so I only one file and without the .dll and it ran on my computer, then went to a new one w/ out python or the vs distributables - didn't work. Was getting an error…
2
votes
0 answers

Avoid duplication of msvcr90.dll in application with embedded Python + C extensions?

I'm distributing a Windows application that embeds Python 2.7 (technique: include python27.dll + 'Python27' directory with DLLs and Lib folder, alongside my .exe). I'm also including a custom Python package that uses C extensions (.pyd files which…
djangodude
  • 5,362
  • 3
  • 27
  • 39
1
2 3