Thread: c++

Results 1 to 8 of 8
  1. #1
    cunikcze's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    192.168.0.100
    Posts
    223
    Reputation
    10
    Thanks
    2,677
    My Mood
    Happy

    c++

    hey, when i create some "project" in c++ and want try to other pc its need
    MSVCP140D = its normal fix ok
    but after i fix its said problem with 0xc0000007


    can someone help me? thanks

    for fix i need install visual studio
    Last edited by cunikcze; 12-07-2015 at 02:05 PM.

  2. #2
    Yemiez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Sweden
    Posts
    2,566
    Reputation
    731
    Thanks
    16,280
    My Mood
    Devilish
    Check THIS out.

  3. #3
    cunikcze's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    192.168.0.100
    Posts
    223
    Reputation
    10
    Thanks
    2,677
    My Mood
    Happy
    Quote Originally Posted by Yamiez View Post
    Check THIS out.
    ok i try thx

  4. #4
    hkKenshin's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    301
    Reputation
    28
    Thanks
    340
    Compile your files in Release mode with the "/MT" switch on your compiler to remove that dependency.

  5. The Following User Says Thank You to hkKenshin For This Useful Post:

    cunikcze (12-10-2015)

  6. #5
    cunikcze's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    192.168.0.100
    Posts
    223
    Reputation
    10
    Thanks
    2,677
    My Mood
    Happy
    ok thx, i try

  7. #6
    cunikcze's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    192.168.0.100
    Posts
    223
    Reputation
    10
    Thanks
    2,677
    My Mood
    Happy
    where i can edit /MT, i know Release mode but no /MT

  8. #7
    maestro1994's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    95
    Reputation
    10
    Thanks
    13
    @cunikcze: The documentation says:
    The error means that INVALID_IMAGE_FORMAT in ntstatus.h which indicates that some files were corrupted.
    What you'd need is the debug version of MSVCP100.dll. You can do a simple static build using /mtd or /mt.
    Or if you want to do it easy easy, you can follow Yamiez's guide .



  9. The Following User Says Thank You to maestro1994 For This Useful Post:

    cunikcze (12-10-2015)

  10. #8
    cunikcze's Avatar
    Join Date
    May 2015
    Gender
    male
    Location
    192.168.0.100
    Posts
    223
    Reputation
    10
    Thanks
    2,677
    My Mood
    Happy
    Quote Originally Posted by maestro1994 View Post
    @cunikcze: The documentation says:

    What you'd need is the debug version of MSVCP100.dll. You can do a simple static build using /mtd or /mt.
    Or if you want to do it easy easy, you can follow Yamiez's guide .
    oh nice thx i look :-)