Errors make my map exit from the debugger

  • Thread starter Thread starter dgk
  • Start date Start date
D

dgk

I'm getting some errors such as:

A first chance exception of type 'System.ArgumentException' occurred
in System.Data.dll
A first chance exception of type 'System.UriFormatException' occurred
in System.dll

Ok, fair enough, and I fix them. But instead of stopping at the
offending statement in VS2005 like a good debugger, the app just ends.
I can't find any option like the old "break on all errors". I would
greatly appreciate a pointer in the right direction.
 
dgk said:
I'm getting some errors such as:

A first chance exception of type 'System.ArgumentException' occurred
in System.Data.dll
A first chance exception of type 'System.UriFormatException' occurred
in System.dll

Ok, fair enough, and I fix them. But instead of stopping at the
offending statement in VS2005 like a good debugger, the app just ends.
I can't find any option like the old "break on all errors". I would
greatly appreciate a pointer in the right direction.

Break on all errors is under the debug menu. Think it is under an item
called exceptions. Doing it from memory, but it is there somewhere.

Chris
 
Back
Top