home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / TEECHART / TEEDEMO.DPR < prev    next >
Text File  |  1998-06-16  |  2KB  |  51 lines

  1. program Teedemo;
  2.  
  3. uses
  4.   Forms,
  5.   Teemain in 'TEEMAIN.PAS' {TeeMainForm},
  6.   Teebasic in 'TEEBASIC.PAS' {DemoForm},
  7.   Features in 'features.pas' {FeaturesForm},
  8.   Udemocha in 'UDemoCha.pas' {SeriesForm},
  9.   Basic in 'Basic.pas' {BasicForm},
  10.   Bubble in 'BUBBLE.pas' {BubbleForm},
  11.   Gantt in 'Gantt.pas' {GanttForm},
  12.   Lastvalu in 'Lastvalu.pas' {DigitalForm},
  13.   Linked in 'Linked.pas' {LinkedTablesForm},
  14.   LogLab in 'loglab.pas' {LogLabelsForm},
  15.   Mulaxis in 'mulaxis.pas' {CustomAxisForm},
  16.   Pie in 'Pie.pas' {PieForm},
  17.   Specs in 'Specs.pas' {ChartSpecs},
  18.   Sqlbars in 'Sqlbars.pas' {SQLBarsForm},
  19.   Stackare in 'stackare.pas' {AreasForm},
  20.   Tablepie in 'Tablepie.pas' {TablePieForm},
  21.   Uanizoom in 'Uanizoom.pas' {FormAnimatedZoom},
  22.   Uarrows in 'uarrows.pas' {ArrowsForm},
  23.   Uaxislab in 'Uaxislab.pas' {AxisLabelsForm},
  24.   UBitmap in 'Ubitmap.pas' {BitmapForm},
  25.   ucolor in 'ucolor.pas' {ColoredForm},
  26.   Ucrossh in 'ucrossh.pas' {CrossHairForm},
  27.   Udbhoriz in 'Udbhoriz.pas' {DBHorizBarForm},
  28.   udemutil in 'Udemutil.pas',
  29.   Udraw in 'Udraw.pas' {DrawForm},
  30.   UFast in 'Ufast.pas' {FastLineForm},
  31.   UHighLo in 'uhighlo.pas' {HighLowForm},
  32.   Ukeyboa in 'ukeyboa.pas' {KeyboardForm},
  33.   Ulegend in 'Ulegend.pas' {LegendForm},
  34.   Umain in 'Umain.pas' {MiniForm},
  35.   UMetafil in 'umetafil.pas' {MetafileForm},
  36.   Uoverbar in 'Uoverbar.pas' {OverBarForm},
  37.   Upages in 'Upages.pas' {PagesForm},
  38.   Uprint in 'Uprint.pas' {PrintForm},
  39.   Uscroll in 'Uscroll.pas' {ScrollForm},
  40.   Uscrollb in 'Uscrollb.pas' {ScrollBarForm},
  41.   Ushapes in 'Ushapes.pas' {ShapesForm},
  42.   Ustack in 'Ustack.pas' {StackedForm},
  43.   Uylegend in 'Uylegend.pas' {LegendXYForm};
  44.  
  45. {$R *.RES}
  46.  
  47. begin
  48.   Application.CreateForm(TTeeMainForm, TeeMainForm);
  49.   Application.Run;
  50. end.
  51.