Subj : Clear C++ exceptions and continue execute program To : borland.public.cpp.borlandcpp From : "akuma" Date : Sat Feb 14 2004 03:28 pm I've set the unhandled exception to be handled by my handler, but I don't know how to clear the exception record and make the program continute to run. The exception just throw infinely. Ctrl + Alt + Delete need to terminate the infinely loop. If I don't want to terminate the application and resume execution, what is the additional code needed to add to the Handler function? LONG WINAPI Handler(_EXCEPTION_POINTERS* e) { int c; c = e->ExceptionRecord->ExceptionCode; return FALSE; } .