views:

268

answers:

3

Is there any lists where the error codes are explained. Eks: HRESULT: 0x81070215 does not tell me enything about what when wrong?

+1  A: 
WinError.h

I have this at the following path on my machine, yours will be similar as well:

C:\Program Files\Microsoft Visual Studio 8\VC\PlatformSDK\include\WinError.h

BTW, if you have Visual Studio installed, then there is a tool available named 'Error Lookup'. Go to Visual Studio, Tools->Error Lookup and in it you can put any HRESULT code to get it's description. You can download ErrorLookup from this location as well.

Aamir
A: 

The HRESULT codes are defined by the code that is causing them to happen, so there is no unique list - it depends on the server code as to what they mean. Normally, you want to look at the error info for the current thread, and see what additional information is passed along with it, in order for it to make sense.

1800 INFORMATION
A: 

There is an error look tool in VS's Tools menu (Tools->Error Lookup), also you can find tool here

C:\Program Files\Microsoft Visual Studio 9.0\Common7\Tools\errlook.exe
ArsenMkrt