Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
12answers
788 views

Is there a general consensus in the C++ community on when exceptions should be used?

I just spent a few hours reading through SO questions on the topic of when to use exceptions, and it seems like there are two camps with different point of views: Use exceptions over error codes Use ...
6
votes
4answers
690 views

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 ...
3
votes
1answer
375 views

What does each sc-win32-status code indicate?

In my IIS log I see many instances of sc-bytes=0. The time-taken for these entries are generally higher than average. I can see various values of sc-win32-status like 64, 22, 121, 1236 etc. Most of ...
3
votes
3answers
434 views

Need help finding a list of SQL Error Codes for IBM DB2 / UDB

Everyday I google SQL error codes for IBM's UDB and DB2. More often then not I get a lot of garbage results. Is there a list of error codes that is complete and searchable that anyone knows of? This ...
3
votes
2answers
95 views

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 ...
2
votes
1answer
371 views

Crystal Reports 6.0 Error Code 997

Can anyone describe "Crystal Report Engine Returns Error Code 997" for Crystal Reports 6.0? Googling proved futile.
2
votes
2answers
503 views

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 ...
1
vote
1answer
165 views

Checking error codes from programs - specifically HTK Toolkit

I have a bash script that calls HTK components such as HCopy and HVite to compute the phone level boundaries of a piece of text. How can I check if the operation was a success? I have tried the ...
1
vote
1answer
1k views

Getting error code 2869 while installing an upgraded version of the same application

I have a C#.NET application having some version 1.0.0.1. I did some modifications to my application & want to release it with an upgraded version 1.0.0.2. ...
1
vote
2answers
447 views

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?
0
votes
0answers
19 views

Debugging Serena Dimensions using error codes

Is it possible to debug any build/deploy errors based on the error codes displayed in Serena Dimensions? For example I may wish to know what an error code like VDA3201130E in Serene Dimensions would ...
0
votes
1answer
64 views

System.IO.IOException ErrorCodes

So I'm getting the following error when trying to print to a Zebra printer from my web application: Type : System.IO.IOException, mscorlib, Version=4.0.0.0, Culture=neutral, ...
0
votes
1answer
382 views

media player error codes

This link is broken. Are there any other resource that keeps media player error codes? or does anybody know what the -18 error code means? Thanks,
0
votes
1answer
234 views

Error using Windows Driver Kit DriverPackagePreinstall

I am trying to preinstall an .inf driver after my windows program loads and was using this question as an example. I am writing in VB.Net while the original question was done in C# so it might be ...
0
votes
2answers
52 views

PHP Logging Question - Error Codes

I'm making a logging script that will log a visitor's way through the website. For example, it would write to a log file: [Username (if logged in)]-[IP] requested [Page] at [Time]--received [Error ...
0
votes
1answer
346 views

NSXMLParser error code changes after abortParsing

I'm using an NSXMLParser on some data that I request from a server on the net. It's possible that one of the arguments to the request causes an API error, and the server will return some valid XML ...
0
votes
2answers
215 views

do we have error codes for sms protocol?

HI All The way we have HTTP codes for acknowledgement with the server like 200 OK and error codes 404 etc , is there a way in which I can check the error code of sms for my J2ME client? I am using ...
0
votes
3answers
321 views

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 ...
0
votes
2answers
283 views

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 ...