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 >
Wrap
Text File
|
2001-09-23
|
706b
|
21 lines
{****************************************************************************}
{ Data Master 2000 }
{****************************************************************************}
program PlotDemo;
uses
Forms,
PlotDmoU in 'PlotDmoU.pas' {PlotDemoForm},
AxisDlg in '..\..\..\..\Library\AxisDlg.pas' {AxisPropsForm},
SerieDlg in '..\..\..\..\Library\SerieDlg.pas' {SeriePropsForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TPlotDemoForm, PlotDemoForm);
Application.CreateForm(TAxisPropsForm, AxisPropsForm);
Application.CreateForm(TSeriePropsForm, SeriePropsForm);
Application.Run;
end.