home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / regedt16.zip / REGEDT16.DPR < prev    next >
Text File  |  1997-03-01  |  308b  |  16 lines

  1. program Regedt16;
  2.  
  3. uses
  4.   Forms,
  5.   Regeditr in 'REGEDITR.PAS' {Form1},
  6.   Newkey in 'NEWKEY.PAS' {NewKeyDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'Enhanced Registry Editor';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TNewKeyDlg, NewKeyDlg);
  14.   Application.Run;
  15. end.
  16.