Marco
09-Jun-2006, 04:02 PM
Hi,
in my application I need to raise an exception and then terminate the
application, but I want eurekalog to store the exception in the log file.
So I do something like this:
(Windows XP, Delphi 5)
.....
try
raise exception.create('Some message');
finally
Application.Terminate;
Halt(1)
end;
......
With ths code the exception is raised and the application is terminated
but the eureka log file is not written. How can I terminate the
application in the same procedure and have the eureka log file written ?
Thanks.
in my application I need to raise an exception and then terminate the
application, but I want eurekalog to store the exception in the log file.
So I do something like this:
(Windows XP, Delphi 5)
.....
try
raise exception.create('Some message');
finally
Application.Terminate;
Halt(1)
end;
......
With ths code the exception is raised and the application is terminated
but the eureka log file is not written. How can I terminate the
application in the same procedure and have the eureka log file written ?
Thanks.