Componentes.Terceros.DevExp.../official/x.38/ExpressQuantumGrid 6/Demos/Delphi/ViewChartDemo/ViewChartDemo.dpr
2008-08-27 11:56:15 +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.