home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D4 / BLOWNREG.ZIP / EXAMPLES / BLOWTEST / BLOWTEST.DPR next >
Encoding:
Text File  |  1998-08-17  |  218 b   |  14 lines

  1. program blowtest;
  2.  
  3. uses
  4.   Forms,
  5.   frmctest in 'frmctest.pas' {frmCipherTest};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TfrmCipherTest, frmCipherTest);
  12.   Application.Run;
  13. end.
  14.