home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipComp.exe / XceedEncryption.Cab / F112936_Manager.dpr < prev    next >
Encoding:
Text File  |  2001-06-21  |  299 b   |  16 lines

  1. program Manager;
  2.  
  3. uses
  4.   Forms,
  5.   unManager in 'unManager.pas' {frmMain},
  6.   unOptions in 'unOptions.pas' {frmOptions};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TfrmMain, frmMain);
  13.   Application.CreateForm(TfrmOptions, frmOptions);
  14.   Application.Run;
  15. end.
  16.