msvcr80.dll was not found

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello All,

I have written some video streaming code in VC++2005 to stream video from
video server.Its Successfully compiling with no errors.but when i try to run
it its giving error

"This Application has failed to start becuase msvcr80.dll was not
found.reinstalling this application may fix the problem."

I tried after reinstalling the application also but same problem continue.

Anyone suggest me how to solve this problem.



Thanks in Advance.
 
Adarsh said:
I have written some video streaming code in VC++2005 to stream video from
video server.Its Successfully compiling with no errors.but when i try to
run
it its giving error

"This Application has failed to start becuase msvcr80.dll was not
found.reinstalling this application may fix the problem."

I tried after reinstalling the application also but same problem continue.

Anyone suggest me how to solve this problem.

Are you running the application on the same machine where you built it? If
not, then you need to make sure that you are redistributing dependent DLLs
in the supported way.

If you are running on the machine where you built the application, it could
be a problem with the damned manifest. You'll find some information about
the manifests, and links to more information about manifests here:

http://blogs.msdn.com/zakramer/archive/2006/05/22/603558.aspx

Frankly, this whole manifest business is annoying to such an extent that the
most expedient thing to do might be to link the runtime statically and
suffer the code bloat.

Regards,
Will
 
Back
Top