home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / 9ZIP / TSUZDLL.ZIP / EXAM3 / FASTUZ.DPR < prev    next >
Text File  |  1998-03-31  |  621b  |  23 lines

  1. program fastuz;
  2.  
  3. uses
  4.   Forms,
  5.   fumain in 'fumain.pas' {Form1},
  6.   PgsInd in 'PgsInd.pas' {FPgsInd},
  7.   Report in 'Report.pas' {Freport},
  8.   ExtrOpt in 'ExtrOpt.pas' {FExtrOpt},
  9.   About in 'About.pas' {FAbout};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.Title := 'Fast UnZip 1.0 - Demo of Fast UnZip DLL for Windows 95 - tssoft@yahoo.com';
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.CreateForm(TFPgsInd, FPgsInd);
  18.   Application.CreateForm(TFreport, Freport);
  19.   Application.CreateForm(TFExtrOpt, FExtrOpt);
  20.   Application.CreateForm(TFAbout, FAbout);
  21.   Application.Run;
  22. end.
  23.