home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d12345 / CHEMPLOT.ZIP / TPlot / Demo / Normal.dpr < prev    next >
Text File  |  2001-05-10  |  262b  |  19 lines

  1. program Normal;
  2.  
  3. uses
  4. {$IFDEF WIN32}
  5.   Forms,
  6. {$ENDIF}
  7. {$IFDEF LINUX}
  8.   QForms,
  9. {$ENDIF}
  10.   Normal1 in 'Normal1.pas' {MainForm};
  11.  
  12. {$R *.res}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TMainForm, MainForm);
  17.   Application.Run;
  18. end.
  19.