Componentes.Terceros.DevExp.../official/x.38/ExpressWeb Framework/Demos/Delphi/WebChartDemo/WebChartDemoWAD.dpr
2008-08-27 11:56:15 +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.