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?
...
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?
...
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...
Where can I find documentation that describes the meaning of error codes returned by regsvr32, such as 0x80070716?
...
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...
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?
...