PDA

View Full Version : How to suppress showing Eurekalog-dialog


NWinkler
06-Jan-2010, 01:43 PM
Hi,

I've some subsequent av-problems while closing my project-applications.
I didn't found the reason, and I lost to much time in searching it.
Probably its a TSynEdit-problem.
Now I only want to suppress the dialogs.
For other reasons I'm already using CustomDataRequest for filling in additional informations.
Surely there is a similar way to suppress the dialog if I knew the application is ending its work.

Best regards
NWinkler

(WinXP D6 Eurekalog 5.1.12, sorry for using old software)

Alex
07-Jan-2010, 11:33 AM
Hi,

Please, see this article:
http://blog.eurekalog.com/tips-tricks-part-1/

But I'm not sure, how this applies to v5.

NWinkler
08-Jan-2010, 07:26 AM
Thanks a lot!!
The hint 3. in
Q: How can I send error reports automatically, without dialog (which requires operator response)?
solves my problem:

procedure MyActionNotify(EurekaExceptionRecord: TEurekaExceptionRecord;
EurekaAction: TEurekaActionType; var Execute: Boolean);
begin
if EurekaAction = atShowingExceptionInfo then Execute := False;
end;
...
Application.Run;
ExceptionActionNotify := MyActionNotify;

suppressing EAccessViolation doesn't solve the problem.
The program leads into en eternal loop of Delphi error 216.

Alex
08-Jan-2010, 10:20 AM
Hi,

Okay, thanks for the feedback.