2
votes
1answer
55 views

Avoid debugger halt on caught exception in thread

Is it possible not have the debugger stop at the throw statement, while keeping the same functionality? I've asked around and it seems not, but I thought I'd give stackoverflow a try before I accept ...
0
votes
1answer
122 views

A first chance exception

This seems different from all the other messages about first chance exceptions :) I'm trying to track down an occasional exception that gets thrown in the serial port inbound data handler. When it ...
0
votes
2answers
99 views

EXE throws errors when DEBUG does not

The program has a form that pops up, you enter text in a few fields, then press close. Upon close the information entered is saved to a class newItem. When I press F5 to debug my program everything ...
0
votes
2answers
352 views

How does ASP.NET handle unhandled exceptions?

When writing for ASP.NET and, while the debugger is attached, if you visit a web page that throws an exception, the unhandled exception helper is launched at the line of code that caused the ...
4
votes
1answer
182 views

Prevent Visual Studio debugging breaking on an apparent “unhandled exception”

Please consider this short console app code. static void Main(string[] args) { try { Action a = () => { throw new ApplicationException("Oops"); }; ...
1
vote
1answer
118 views

Is it possible to install custom unhandled exception handler while debugging in VS 2008/2010?

I'm working on an utility that processes very large data sets. Since there are lots of code it uses to operate, some totally unexpected errors appear while running. So I run it inside Visual Studio ...