Componentes.Terceros.DevExp.../official/x.33/ExpressQuantumGrid 6/Demos/Delphi/ViewChartDemo/ViewChartDemo.dpr
2008-03-26 12:15:03 +00:00

16 lines
344 B
ObjectPascal

program ViewChartDemo;
uses
Forms,
ViewChartDemoMain in 'ViewChartDemoMain.pas' {frmMain},
AboutDemoForm in '..\AboutDemoForm.pas' {formAboutDemo};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'ExpressQuantumGrid ViewChart Demo';
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.