When you run a single game program, an error of this kind pops up: enter image description here

Given:

  1. Win7 x86
  2. Microsoft Visual C ++ 2005, 2008, 2010

Also tried running as administrator, did not help. I read on the forums that it is "Should" help

I will be very grateful

Closed due to the fact that it was off-topic by the participants Athari , VenZell , alexis031182 , fori1ton , null 18 May '15 at 6:23 .

It seems that this question does not correspond to the subject of the site. Those who voted to close it indicated the following reason:

  • "Questions asking for help with debugging (" why does this code not work? ") Should include the desired behavior , a specific problem or error, and the minimum code for playing it right in the question . Questions without an explicit description of the problem are useless for other visitors. See How to create minimal, complete, repeatable example . " - Athari, VenZell, alexis031182, fori1ton, null
If the question can be reformulated according to the rules set out in the certificate , edit it .

  • > I also tried launching on behalf of the administrator, the cool way did not help, nothing can be said - DreamChild
  • @DreamChild, I read on the forums that this "should" help, so I clarified. right away - k0mar
  • 2
    you can hardly help you. Because you asked something like the following: “Something doesn’t work for me. Guess the rest,” DreamChild
  • @DreamChild, can I have your skype? So that there you all show and clarify. - k0mar
  • one
    @IamS brrrrr ... do you understand that they will not help you here? Including me? You do not have the source of this application, is not it? (and if they were, it is unlikely that someone would have a desire to pick at them for free) This is your "Runtime error" can talk about anything, and it only tells me that "something is wrong" . I am a programmer, not a psychic, so I don’t know how to “treat by photo”. You need to contact the developer of your miracle program, and not force other people's brains. And yes, you once said that you were supposed to know how to develop games? So why not understand the obvious things? - DreamChild

1 answer 1

Most likely any dll is missing. When developing an application, there could be a Visual C ++ 2010 prof or another that comes with its own modules.

For example:

"msvcp100.dll" - 100 номер версии студии. "msvcr100.dll" 

And when you run .exe on another computer:

  1. paths to these dll are not spelled out
  2. spelled wrong
  3. dll has a different version and, accordingly, declarations of functions called from dll so that it is present in .exe may differ.
  4. there are none at all
  5. DLL is but not yet registered in the system. Need to reboot.

Therefore, all dependent dll modules should be placed in the root folder of the application or copied to the system folder during installation.

All other types of errors and ways to solve them, based on the available information, it is impossible to determine.