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