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

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