up vote 5 down vote favorite
5
share [g+] share [fb]

It used to be that if an exception got raised and propagated far enough up the call stack, Application's main loop would handle it and give you a dialog box. That behavior seems to be broken under Windows Vista. If any exception reaches that level, Vista steps in and says the program "has stopped working," when it used to be perfectly able to continue under XP. (That's the entire reason the exception handler in the main loop is there, for heaven's sake!)

Is there any way to fix this? Preferably in my code itself and not just on my computer, so it won't screw up on other systems?

link|improve this question

68% accept rate
mmmm...using try..catch blocks and log your errors using NLog or Log4Net in a text file ??? – Perpetualcoder Jun 12 '09 at 19:57
Replacing the Application.OnException event with your own is not that difficult to do, plus you can log the exception to a file at that point as well. – Jeff Cuscutis Jun 12 '09 at 20:22
Yeah, but I'd prefer not to have to set that up every time I hack up some little tool for personal use. – Mason Wheeler Jun 12 '09 at 22:39
How did JITEnable get set in the first place? I thought it defaulted to 0 – Jim McKeeth Jun 13 '09 at 4:14
question should have a .net tag? – mjn Jun 13 '09 at 9:18
show 1 more comment
feedback

4 Answers

up vote 11 down vote accepted

Check to ensure that the global variable in System, JITEnable is still set to 0. If that variable is set to 1, hardware (and external) exceptions will cause that behavior by calling UnhandledExceptionFilter. If it is set to 2, any exception will cause it.

link|improve this answer
Thanks! That worked. – Mason Wheeler Jun 12 '09 at 21:27
1  
@Mason: How did JITEnable get set in the first place? I thought it defaulted to 0. – Jim McKeeth Jun 13 '09 at 4:13
feedback

You should add an application level exception handler, http://www.chami.com/tips/delphi/011497D.html. Also you should look into running madexcept to determine why these exceptions are happening, so they can be fixed.

link|improve this answer
1  
+1 for MadExcept. Amazing product, absolutely amazing. – Tim Sullivan Jun 12 '09 at 20:09
feedback

Unfortunately, not all exceptions were nicely caught, even in XP. Ever had an application just vanish, ot just hanging and needing a pskill? (some Delphi version anyone?)
I would try to plug EurekaLog in your app and see if it gives some information on what happens.

link|improve this answer
feedback

catch the exception before it bubbles up to the main UI loop. Just do a high-level catch-all exceptions block:

begin
   Try
     ...
   Except
     ...
   end;
end;

Ultimately, you should not blame Vista for this, nor Delphi. You really should do this, by default, in all your programs.

link|improve this answer
The one in TApplication is the high-level catch-all block. In an event-driven GUI app, it's the last function you can always be sure is running. – Mason Wheeler Jun 12 '09 at 20:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.