What is this error “A fatal error has occurred HRESULT=0x8007000e. Error Code=0x0” in VS 2008

故事扮演 提交于 2019-12-11 16:00:09

问题


While i am trying to run a MVC 2 application in VS 2008 i am getting following error:

A fatal error has occurred HRESULT=0x8007000e. Error Code=0x0

can any one explain what is the problem?


回答1:


An HRESULT has three parts: some flags, a "facility" and the error code.

0x8007000e

  • 8: Error
  • 7: FACILITY_WIN32: ie. this is a Windows error.
  • E: or 14: ERROR_OUTOFMEMORY

So you process or system is overloaded.




回答2:


Possible duplicate: Why am I often getting error 0x8007000e when debugging a project in Visual Studio?

Additional info: http://social.msdn.microsoft.com/forums/en-US/vsdebug/thread/56e15831-5729-4775-be09-d565fca19605



来源:https://stackoverflow.com/questions/5351829/what-is-this-error-a-fatal-error-has-occurred-hresult-0x8007000e-error-code-0x

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!