Componentes.Terceros.DevExp.../official/x.30/ExpressWeb Framework/Demos/Delphi/WebChartDemo/WebChartDemoWAD.dpr
2007-12-16 17:06:54 +00:00

20 lines
494 B
ObjectPascal

program WebChartDemoWAD;
{$APPTYPE GUI}
uses
Forms,
ComApp,
cxWebDebugRun,
WebChartMain in 'WebChartMain.pas' {WebChartMainForm},
WebChartData in 'WebChartData.pas' {WebChartDataMod: TcxWebHomeDataModule},
WebChartHome in 'WebChartHome.pas' {WebChartHomePage: TcxWebPageModule} {*.html};
{$R *.RES}
begin
Application.Initialize;
RunTestApplication(WebApplicationName);
Application.CreateForm(TWebChartMainForm, WebChartMainForm);
Application.Run;
end.