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

20 lines
518 B
ObjectPascal

program CustomAttrDemoWAD;
{$APPTYPE GUI}
uses
Forms,
ComApp,
cxWebDebugRun,
CustomAttrMain in 'CustomAttrMain.pas' {CustomAttrMainForm},
CustomAttrData in 'CustomAttrData.pas' {CustomAttrDataMod: TcxWebHomeDataModule},
CustomAttrHome in 'CustomAttrHome.pas' {CustomAttrHomePage: TcxWebPageModule} {*.html};
{$R *.RES}
begin
Application.Initialize;
RunTestApplication(WebApplicationName);
Application.CreateForm(TCustomAttrMainForm, CustomAttrMainForm);
Application.Run;
end.