home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kolekce / d56 / DM2KVCL.ZIP / PLOTDEMO / PLOTDEMO.DPR < prev    next >
Text File  |  2001-09-23  |  706b  |  21 lines

  1. {****************************************************************************}
  2. {                            Data Master 2000                                }
  3. {****************************************************************************}
  4. program PlotDemo;
  5.  
  6. uses
  7.   Forms,
  8.   PlotDmoU in 'PlotDmoU.pas' {PlotDemoForm},
  9.   AxisDlg in '..\..\..\..\Library\AxisDlg.pas' {AxisPropsForm},
  10.   SerieDlg in '..\..\..\..\Library\SerieDlg.pas' {SeriePropsForm};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TPlotDemoForm, PlotDemoForm);
  17.   Application.CreateForm(TAxisPropsForm, AxisPropsForm);
  18.   Application.CreateForm(TSeriePropsForm, SeriePropsForm);
  19.   Application.Run;
  20. end.
  21.