| Delphi .NET (2) Database (71) Delphi IDE (89) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
|
A global exception handler
(2 votes). Leave comments and/ or rate it.
You may want your own global exception handler to handle "common" errors such as "out of space," etc. You will redirect TApplication's "OnException" event to your main form's exception handler "MyExceptionHandler". The redirection is done in FormCreate, similar to assigning Application.OnHint:
Comments:
|