We use a lot asserts in our code, specifically _ASSERTE(exp)
When the assert fires, there is the option to Abort/Retry/Ignore
In VC6 hitting 'Retry' would take us to the code in the debugger but in VC7 there is another dialog "Unhandled exception" with the options Break/Continue. So we have to click on Break before it takes us to the code
Is there a way to disable this second dialog
Thanks in advance
AP
Carl Daniel [VC++ MVP] - 26 May 2004 23:54 GMT
> We use a lot asserts in our code, specifically _ASSERTE(exp).
> When the assert fires, there is the option to Abort/Retry/Ignore.
[quoted text clipped - 4 lines]
>
> Is there a way to disable this second dialog?
not that I know of.
-cd