home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kolekce / d567 / FLEXCEL.ZIP / Demo / GetStated / GetStarted.dpr next >
Encoding:
Text File  |  2002-10-04  |  202 b   |  14 lines

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