git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@29 05c56307-c608-d34a-929d-697000501d7a
20 lines
554 B
ObjectPascal
20 lines
554 B
ObjectPascal
program ServerScriptsDemoWAD;
|
|
|
|
{$APPTYPE GUI}
|
|
uses
|
|
Forms,
|
|
ComApp,
|
|
cxWebDebugRun,
|
|
ServerScriptsMain in 'ServerScriptsMain.pas' {ServerScriptsMainForm},
|
|
ServerScriptsData in 'ServerScriptsData.pas' {ServerScriptsDataMod: TcxWebHomeDataModule},
|
|
ServerScriptsHome in 'ServerScriptsHome.pas' {ServerScriptsHomePage: TcxWebPageModule} {*.html};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
RunTestApplication(WebApplicationName);
|
|
Application.CreateForm(TServerScriptsMainForm, ServerScriptsMainForm);
|
|
Application.Run;
|
|
end.
|