_ASSERTE doesn't break into the code

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.
 
C

Carl Daniel [VC++ MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top