home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / INFO / DI9806CJ.ZIP / ANIMATE.DPR < prev    next >
Text File  |  1997-06-11  |  193b  |  14 lines

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