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

1

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?

visual-studio-2008
asp.net-mvc-2
asked on Stack Overflow Mar 18, 2011 by Muthu

2 Answers

2

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.

answered on Stack Overflow Mar 18, 2011 by Richard
0

User contributions licensed under CC BY-SA 3.0