home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 December / Chip_2002-12_cd1.bin / zkuste / delphi / nastroje / d23456 / PRODEL.ZIP / PROTEST2.DPR < prev    next >
Text File  |  2002-07-23  |  246b  |  16 lines

  1. program Protest2;
  2. {$O-}
  3. {$WARNINGS OFF }
  4. uses
  5.   Forms,
  6.   Protmai2 in 'Protmai2.pas' {Form1},
  7.   Procal2 in 'Procal2.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.