Reputation: 87
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?
Upvotes: 1
Views: 3349
Reputation: 109200
An HRESULT
has three parts: some flags, a "facility" and the error code.
0x8007000e
FACILITY_WIN32
: ie. this is a Windows error.So you process or system is overloaded.
Upvotes: 2
Reputation: 3460
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
Upvotes: 0