3
votes
2answers
57 views
Exception handling with multiple forms
I'm seeing different behavior with exceptions being caught or not being caught when I am debugging vs. when I am running a compiled .exe. I have two forms (Form1 and Form2). Form …
0
votes
2answers
68 views
WinForms - why aren’t my exceptions caught?
Hi,
In my multithread server I am using following code (before running Form itself or course)
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(Curr …
0
votes
5answers
129 views
How do I diagnose “Unhandled Exceptions” in Java?
In a Java program I am currently getting "Unhandled Exception" at a certain point in the program and I can't seem to determine the location where this is being generated.
Its also …
2
votes
3answers
359 views
Exceptions on .Net ThreadPool Threads
Duplicate: How to catch exceptions from a ThreadPool.QueueUserWorkItem?
I am queueing up multiple delegates on the .Net ThreadPool for a large number of independant remoting ca …
0
votes
4answers
22 views
Using handled exceptions as an intended trigger?
Occasionally in my code I will intentionally use a thrown exception as an event trigger. For instance, I will loop UNTIL an exception is thrown and then break; in the catch clause …
1
vote
2answers
93 views
Why does an unhandled exception not terminate a process while debugging?
This is a behavior I noticed several times before and I would like to know the reason behind that. If you run the following program under the (Visual Studio 2008) debugger, the deb …
1
vote
2answers
261 views
Why is UnhandledExceptionEventArgs.ExceptionObject an object and not an Exception?
Why is UnhandledExceptionEventArgs.ExceptionObject an object and not an Exception?
I am attaching to AppDomain.UnhandledException.
I would like to cast UnhandledExceptionEventArg …
2
votes
1answer
157 views
Catching Unhandled Exceptions in Child Threads in WPF
I have a WPF application that spins off several threads. I have defined a DispatcherUnhandledException event handler in App.xaml.cs that displays a detailed error message, and this …
0
votes
2answers
172 views
AppDomain.CurrentDomain.UnhandledException not firing without debugging
Hi,
I have a .NET program with an event handler bound to Application.CurrentDomain.UnhandledException.
When running the program with debugging, this event fires when an unhandled e …
2
votes
2answers
392 views
Unhandled exceptions in BackgroundWorker
I have a small WinForms app that utilizes a BackgroundWorker object to perform a long-running operation.
The background operation throws occasional exceptions, typically when some …
0
votes
2answers
363 views
Problem with MessageBox.Show in catch
Hello,
When I try to run the following code It causes an Unhandled Exception. After much tweeking with the code I found if commented out the MessageBox.Show line the problem goes a …
2
votes
6answers
316 views
When can an exception in a .NET WinForms app just get eaten without being caught or bubbling up to a windows exception?
In several places in our code, we notice that if running under debugger it'll show that there's an unhandled exception in the code, however if running outside the debugger it will …
0
votes
1answer
296 views
Unhandled exception at 0x10012c5d (highgui110.dll)
Hi there
I had OpenCV lib installed on my machine and all was working fine, until I decided to try the new version of the lib 1.1pre. Since that moment I get the following error:
…
1
vote
13answers
680 views
Would you ever NOT catch an exception, or throw an exception that won’t be caught?
I've dealt with instances where I would throw/rethrow an exception knowing that the code surrounding it would catch the specific exception. But is there any time you would want to …
1
vote
3answers
87 views
In case of unhandled code exceptions, what is the most appropriate thing to show the end user?
In a web application, when your server side code screws up and experiences an unhandled exception, what is the most appropriate way to tell the end users of what happened?
Do you s …
