_ASSERTE doesn't break into the code

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

Guest

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.
 
AP said:
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?

not that I know of.

-cd
 
Back
Top