I have an unattended application that I want to exit on exception. It
appears that certain exceptions in the CRT (caused by bugs in our code) cause
a 'Microsoft Visual C++ Runtime Library' popup that requires acknowledgement
before the application exits. I'm concerned that if I implement an unhandled
exception handler, it will not handle these cases if the CRT already is. Is
there a way to disable this apparent exception handling within the CRT? Or
is my understanding incorrect?
Thank you.
Have you tried setting a unhandled exception handler? If I am right, if your
application does not handle the exception, then the runtime exception dialog
will be displayed. So setup your unhandled exception handler and then you
wont get those dialogs. Having said that, IMHO why not solve the problem
rather than trying something new.

Signature
_____________________
Ashok K Kumar
ashokkal at gmail dot com
> I have an unattended application that I want to exit on exception. It
> appears that certain exceptions in the CRT (caused by bugs in our code) cause
[quoted text clipped - 5 lines]
>
> Thank you.