|
There have been a couple of posts about this error on the vc++ forms Answers have been from checking to see if there is a manifest http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=15218&SiteID=1 To just downloading msvcr80.dll from dll-files.com and copy it to system32 folder. http://www.dll-files.com/dllindex/dll-files.shtml?msvcr80 (not recommended, but can't ignore that it solved the problem for a lot of folks) Or if you have a winSxS folder for .Net it should have a copy of it you can copy to the system32 folder >From all I've seen the vc++ 2005 release, it requires a nsd.exe.manifest file (again take from an MS form) Like <?xml version='1.0' encoding='UTF-8' standalone='yes'?> <assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'> <dependency> <dependentAssembly> <assemblyIdentity type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' processorArchitecture='x86' publicKeyToken='6595b64144ccf1df' language='*' /> </dependentAssembly> </dependency> <dependency> <dependentAssembly> <assemblyIdentity type='win32' name='Microsoft.VC80.CRT' version='8.0.50608.0' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' /> </dependentAssembly> </dependency> </assembly> Just using notepad and saving the file with the nsd.exe file should help it. HTH P shedis wrote: Hi, --
Patrick O'Leary AOL Syndication Technologies Phone: + 1 703 265 8763 Honesty is the best policy, but insanity is a better defense !
|
- [AOLSERVER] MSVCR80.dll error shedis
- Re: [AOLSERVER] MSVCR80.dll error patrick o'leary
