Stop when debugging

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

In VB6 there is an option to stop the code (when debugging) when an error
occurs even if there is an error treatment in the code (on error goto).
Where is this option in .NET?

Thank you,
Roby Eisenbraun Martins
 
- Have a look in the upper menu. There's an item Debug, it has a subitem
Exceptions.
- Select Common Language Runtime Exceptions.
- If you set the option 'When the exception is thrown' to 'Break into the
debugger' it will break on all errors...

When you collapse the Common Language Runtime Exceptions you can drill down
to a specific exception.
 
Back
Top