home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / s_to_z / sysfile / sysfile.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  736 b   |  28 lines

  1. {=================================================
  2.  Program: SysFile.Exe
  3.  Version: 1.0
  4.  Module: SysFile.dpr
  5.  Author: Wayne Niddery
  6.  CopyRight ⌐ 1995 Wayne Niddery and WinWright
  7.  =================================================}
  8. program Sysfile;
  9.  
  10. uses
  11.   Forms,
  12.   Sysfile1 in 'SYSFILE1.PAS' {Form1},
  13.   Sysprot in 'SYSPROT.PAS' {ProtectDlg},
  14.   Sysopts in 'SYSOPTS.PAS' {OptionsDlg},
  15.   Sysabout in 'SYSABOUT.PAS' {AboutDlg},
  16.   SysGlb in 'SYSGLB.PAS';
  17.  
  18. {$R *.RES}
  19.  
  20. begin
  21.   Application.Title := 'SysFile';
  22.   Application.HelpFile := 'sysfile.hlp';
  23.   Application.CreateForm(TForm1, Form1);
  24.   Application.CreateForm(TOptionsDlg, OptionsDlg);
  25.   Application.CreateForm(TProtectDlg, ProtectDlg);
  26.   Application.Run;
  27. end.
  28.