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

  1. program MemEncrypt;
  2.  
  3. uses
  4.   Forms,
  5.   unMemEncrypt in 'unMemEncrypt.pas' {frmMemoryEncrypt},
  6.   unKeyPair in 'unKeyPair.pas' {frmKeyPair},
  7.   unOptions in 'unOptions.pas' {frmOptions},
  8.   unUtility in 'unUtility.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TfrmMemoryEncrypt, frmMemoryEncrypt);
  15.   Application.CreateForm(TfrmKeyPair, frmKeyPair);
  16.   Application.CreateForm(TfrmOptions, frmOptions);
  17.   Application.Run;
  18. end.
  19.