home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / excptexp / allexcep / allexcep.dpr next >
Encoding:
Text File  |  1995-03-21  |  320 b   |  20 lines

  1. program Allexcep;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: ALLEXCEP }
  5.  
  6. uses
  7.   Forms,
  8.   WinProcs,
  9.   WinTypes,
  10.   SysUtils,
  11.   Main in 'MAIN.PAS' {Form1};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.OnException := Form1.Sam;
  18.   Application.Run;
  19. end.
  20.