本文介绍了这是什么错误"发生致命错误HRESULT = 0x8007000e。错误code =为0x0"在VS 2008中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
虽然我试图运行VS 2008中的MVC 2应用程序我得到以下错误:
While i am trying to run a MVC 2 application in VS 2008 i am getting following error:
发生致命错误HRESULT = 0x8007000e。错误code =为0x0
A fatal error has occurred HRESULT=0x8007000e. Error Code=0x0
任何一个可以说明什么问题呢?
can any one explain what is the problem?
推荐答案
这是 HRESULT
有三个部分:一些标志,一个工厂,而错误code
An HRESULT
has three parts: some flags, a "facility" and the error code.
0x8007000e
0x8007000e
- 8:错误
- 7
FACILITY_WIN32
:IE浏览器。这是一个Windows错误。 - E:或14:ERROR_OUTOFMEMORY
- 8: Error
- 7:
FACILITY_WIN32
: ie. this is a Windows error. - E: or 14: ERROR_OUTOFMEMORY
所以,你处理或系统过载。
So you process or system is overloaded.
这篇关于这是什么错误"发生致命错误HRESULT = 0x8007000e。错误code =为0x0"在VS 2008中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!