show/hide this revision's text 2 typos

Interesting.

Custom exception handler is called if you run the app in Delphi IDE (tried with 2007) but not if you run it from the command prompt.

Another interesting thig thing - I changed the main program code to

begin
  WriteLn('Starting');
  try
    ExceptProc := @ExceptionHandler;
    Unhandled;
  finally Readln; end;
end.

and noticed that exception message is only displayed AFTER I press the Enter key (to get some input to the Readln). Therefore, your handler is not called when exception occurs but when it is handled (in implicit try..except that wraps all your code). Make sense.

Must be something with this implicit try..except then, but I lack a non-Delphi debugger on this machine and can't dig further. Mayber Maybe somebody else knows the answer ...

show/hide this revision's text 1

Interesting.

Custom exception handler is called if you run the app in Delphi IDE (tried with 2007) but not if you run it from the command prompt.

Another interesting thig - I changed the main program code to

begin
  WriteLn('Starting');
  try
    ExceptProc := @ExceptionHandler;
    Unhandled;
  finally Readln; end;
end.

and noticed that exception message is only displayed AFTER I press the Enter key (to get some input to the Readln). Therefore, your handler is not called when exception occurs but when it is handled (in implicit try..except that wraps all your code). Make sense.

Must be something with this implicit try..except then, but I lack a non-Delphi debugger on this machine and can't dig further. Mayber somebody else knows the answer ...