error-codes

Where can I find a list of all windows error codes?

In a previous question, I asked what it meant when my program returned an obscure value like -1073741819 Well, now I'm getting another large return value, -1073740777 And I would like to know if there is some list of all of these values and what they mean sopmewhere? ...

Cannot run Android application on emulator/device - activity doesn't exist?

When trying to run my application on the emulator I get an error from the activitymanager: ActivityManager: Error type 3 My activity exists, is listed in the manifest (in fact, its the MAIN launcher activity). Anyone know what this error means? ...

Logging Error Code Design, Input needed

So, I'm stuck on a little problem. I was curious if anyone had some extra input they might be willing to give on this design. I have an ILog interface which has two methods exposed for the Error Code logging part of the design. FlagError and GetErrorCode; FlagError sets a bit on an integer, each bit representing that a certain error was...

Descriptions of error codes returned by regsvr32

Where can I find documentation that describes the meaning of error codes returned by regsvr32, such as 0x80070716? ...

How do I look up the proper Windows System Error Code to use in my application?

I am writing a C# .NET 2.0 application wherein when a message is expected to be received via the SerialPort. If the frame is not received (i.e. times out) or it is determined to be invalid, I need to set an error code using SetLastError. Windows has a plethora of error codes. Is there a simple tool or reference to help narrow down the...

Equivalent to Windows Error Codes in .NET

Microsoft provides a bunch of standardized error codes for Windows (http://msdn.microsoft.com/en-us/library/ms681381(VS.85).aspx). When applicable I find them useful to reference in my own applications, instead of creating my own. Is there something similar but specific to .NET? ...