> Nello Said lots of interesting things to show how dumb I really am :)
I didn't mean to say that you were dumb. (Sorry if it looked that way)
The only reason I knew about this was because I had been confused
about it myself.
> I find it particularly interesting that if you have a try/except such as
>
> Except
> // do nothing
> end;
> ShowMessage('Here');
>
> Then on ANY exception 'Here' will show as Delphi has handled the
exception. But, if I understand you correctly, if you have
>
> except
> on ExceptionName do
> Show('Gotchya');
> end
> ShowMessage('Here');
>
> then if the exception is not an 'ExceptionName' exception, it will be the
same as if the exception is re-raised and 'Here' will not show.
yes - that's how it's supposed to work.
The bug that originally started this thread happens when
AppEvents appears in the uses clause for the unit.
In that case sometimes exceptions just get "lost"
as if they never occurred.
-ns
---------------------------------------------------------------------------
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED]
with body of "unsubscribe delphi"