views:

30

answers:

1

In visual studio you can activate break on first change exceptions. In my application I would like to ignore certain exceptions (validation and installation) and I have to disable those by hand.

Is there a way to set up the first change exception window with a set of default exceptions to catch and/or ignore?

+1  A: 

You could write a macro, using the ExceptionGroups property.

SLaks
Using a macro to changes a group of exceptions works really slow. Maybe I'm doing something wrong but togglin one exception after another in the CLR group takes over 3 minutes. IN vs.net it happens instantanious.
Barfieldmv