Questions tagged [msvcr90.dll]

36 questions
1
vote
2 answers

can i create Dll with VC++ 2008 and use it in VC++ 6?

I have made a DLL with VC++ 2008 and when i use it in console application VC++ 6.0, there is an exception: (msvcr90.dll): 0xc0000005: Access Violation
Ahmed Mostafa
  • 419
  • 6
  • 16
1
vote
2 answers

Unable to find private assemblies that are definitely present on target computer

We're distributing the Visual C++ runtimes as private assemblies (i.e., putting msvcp90.dll, msvcm90.dll, msvcr90.dll, and Microsoft.VC90.CRT.manifest into a Microsoft.VC90.CRT folder that exists in the same directory as our app's executable). So…
Doug Kavendek
  • 3,624
  • 4
  • 31
  • 43
1
vote
1 answer

issue creating java native interface

I tried to implement JNI. first I create Java class containing one native method, and compile it using "javac HelloWorld.java" and then create header file using "javah HelloWorld" ... here is the code class HelloWorld { private native void…
1
vote
2 answers

how use ctypes with msvc*.dll from within matlab on windows

i'm using winpython (2.7) on windows 7/64, matlab 2015a, with matlab's new python bridge. >> py.ctypes.util.find_library('c') ans = Python str with no properties. msvcr90.dll >> py.ctypes.util.find_msvcrt() ans = Python str with no…
user1441998
  • 459
  • 4
  • 14
1
vote
1 answer

audio playing from within python crashes due to msvcr90.dll exception

I wrote a program that uses pyaudio to record and play audio signal simultaneously. for some unknown reason sometimes when playing signals the program crashes with this error: Unhandled exception at 0x72A6AE7A (msvcr90.dll) in python.exe:…
netanelf
  • 11
  • 2
1
vote
1 answer

Ruby crashes on windows on using thin+ssl

I am using ruby on windows(ruby 1.9.3p194 (2012-04-20 revision 35410) [i386-mswin32_90]). And in my gemfile i have following:- gem 'rack', '1.4.5' gem 'thin', '1.5.0' Problem is when i am trying to start…
pooja
  • 319
  • 1
  • 2
  • 21
1
vote
2 answers

Running Python from C++ (VS2010, compiler v100)

I have some code here that we used to use to call a Python script from our (very large) application. It worked fine when we used VS2008 (compiler v90), which is what the default version of python27 was compiled with. In the last year we've upgraded…
Mike Sadler
  • 1,750
  • 1
  • 20
  • 37
1
vote
0 answers

MSVCR90.DLL Error When Trying to run pykml module in Windows Vista

I am new to python and plan on using it with pykml to create KML files for Google Earth. I have succesfully installed the dependecies(lxml-2.3-py2.7-win32.egg) and the pykml package(pykml-0.1.0-py2.7.egg) itself using easy_install. In the python…
1
vote
2 answers

Getting linking error in visual c++ project

I have a visual c++ project in my work space which is totally depend on .lib (static library). Now i want to create a dll project using the existing code in visual c++ but it shows me following linking error: Linking... msvcrt.lib(MSVCRT.dll) :…
Amit Pal
  • 10,604
  • 26
  • 80
  • 160
0
votes
1 answer

msvcrt9 runtime

Sounds ridiculous, but I need to install the "Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.6161" on win2008-R2 64bit I go here Run the installer, everything's fine. But after the reboot, I don't see the entry in the "Program and…
Stef
  • 3,691
  • 6
  • 43
  • 58
0
votes
1 answer

remove dependency from "MSVCR90.dll"

I have a dll abc.dll.but when I open it in dependency walker,I depends on the MSVCR90.dll. I want to set the property of the project such type it should be independent of that dll. How it is possible.I am using vs2008.
jiten
  • 5,128
  • 4
  • 44
  • 73
0
votes
2 answers

VC++ application doesn't run on other machines due to "incorrect configuration error"

I know that this topic has been posted over a dozen times, but I wasn't able to find a topic that fit my issue so I will post all detail below. To start I will mention that I have two projects: The first is the main application and the second is a…
Seb
  • 3,414
  • 10
  • 73
  • 106
0
votes
0 answers

I can not right click in Delphi7 IDE, because when i click , occur error message

I using Delphi 7. Until recently, it worked fine. But now, every time i do right click, I get an error that message is "Access violation at address 735f5e37 in module 'MSVCR90.dll'. Write of address 00000000" So, I can not do anything in…
0
votes
1 answer

add reference to msvcr90.dll in .net project

One of our self hosted customer, do not have the public installation of msvcr90.dll. In order to make our app work on their machine, after each deployment we manually add msvcr90.dll and Microsoft.VC90.crt file in our app folder. and this requires a…
muhammad kashif
  • 2,566
  • 3
  • 26
  • 49
0
votes
1 answer

Embedding Python with vs2010

I am trying to embedding Python with vs2010 and python2.7.9,when I import moudles using PyRun_SimpleString("import tables\n") ,It works error with missing MSVCR90.dll which shows below errors but when I test “import tables” in pyhoth IDLE,it is…
hewitt
  • 1
  • 1