git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
20 lines
542 B
ObjectPascal
20 lines
542 B
ObjectPascal
program ClientEventsDemoWAD;
|
|
|
|
{$APPTYPE GUI}
|
|
uses
|
|
Forms,
|
|
ComApp,
|
|
cxWebDebugRun,
|
|
ClientEventsMain in 'ClientEventsMain.pas' {ClientEventsMainForm},
|
|
ClientEventsData in 'ClientEventsData.pas' {ClientEventsDataMod: TcxWebHomeDataModule},
|
|
ClientEventsHome in 'ClientEventsHome.pas' {ClientEventsHomePage: TcxWebPageModule} {*.html};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
RunTestApplication(WebApplicationName);
|
|
Application.CreateForm(TClientEventsMainForm, ClientEventsMainForm);
|
|
Application.Run;
|
|
end.
|