home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / Chip_2002-02_cd1.bin / zkuste / delphi / nastroje / d23456 / PRODEL.ZIP / PROTEST.DPR < prev    next >
Text File  |  2001-04-09  |  242b  |  17 lines

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