home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / FONTSAMP / Fontsamp.dpr < prev    next >
Text File  |  1995-09-02  |  385b  |  19 lines

  1. program Fontsamp;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   About in 'ABOUT.PAS' {AboutForm},
  7.   Preview in 'PREVIEW.PAS' {PreviewForm},
  8.   Drawpage in 'DRAWPAGE.PAS';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.CreateForm(TAboutForm, AboutForm);
  15.   Application.CreateForm(TPreviewForm, PreviewForm);
  16.   Application.Run;
  17. end.
  18.  
  19.