Thema: Exception

Einzelnen Beitrag anzeigen

Benutzerbild von Sanchez
Sanchez

Registriert seit: 24. Apr 2003
Ort: Neumarkt Stmk
892 Beiträge
 
Delphi XE6 Enterprise
 
#2

Re: Exception

  Alt 29. Sep 2003, 12:12
Wenn du alle Exceptions deiner Anwendung in einer Funktione behandeln willst, definiere eine Prozedur im Mainform:

    procedure AppException(Sender: TObject; E: Exception); Im FormCreate überschreibts du die OnException-Proz von Application

  Application.OnException := AppException; In AppException kannst du die Exception abfangen.

grüße, daniel
Daniel
  Mit Zitat antworten Zitat