CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jan 2006
    Posts
    99

    Angry msvcr90.dll not found in debug mode

    hello folks,

    i have an annoying problem:

    i duplicated one of my old vs2008 project folder, and did some modification on the duplicated one. everything just fine, but since the two projects are using the same project name, they are confusing, so i decided to change the duplicated one to another name.

    now, i cannot run the duplicated code, because i got information saying msvcr90.dll not found , even i changed the project name back.

    i found an article talking about this,

    http://www.insidercoding.com/post/20...SVCR90DLL.aspx

    but the suggested solution doesn't work. i added msvcr90 to the "ignore specific library", but i can still see the problem.

    but the original project always works.

    please help me. thank you very much.

  2. #2
    Join Date
    Jul 2005
    Location
    E: 120°.6, N: 31°.3′
    Posts
    795

    Re: msvcr90.dll not found in debug mode

    Take a look at Redistributing Visual C++ Files , and hope it helps.
    Little by little one goes far
    Keep moving.......!
    Nothing is impossible !

  3. #3
    Join Date
    Jan 2006
    Posts
    99

    Re: msvcr90.dll not found in debug mode

    Quote Originally Posted by sunny_sz View Post
    Take a look at Redistributing Visual C++ Files , and hope it helps.
    after copy msvcr90.dll to the project folder, now i see new problem:

    application made an attampt to load the c runtime library incorrectly

  4. #4
    Join Date
    Jul 2005
    Location
    E: 120°.6, N: 31°.3′
    Posts
    795

    Re: msvcr90.dll not found in debug mode

    Any errors when compiling? If so, please reference C Run-Time Error R6034.
    Little by little one goes far
    Keep moving.......!
    Nothing is impossible !

  5. #5
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: msvcr90.dll not found in debug mode

    msvcr90.dll is the Release build for the C runtime. for the Debug version you need msvcr90d.dll.
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured