git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
20 lines
539 B
ObjectPascal
20 lines
539 B
ObjectPascal
program CustomRenderDemo;
|
|
|
|
{$APPTYPE GUI}
|
|
uses
|
|
Forms,
|
|
ComApp,
|
|
cxWebDebugRun,
|
|
CustomRenderMain in 'CustomRenderMain.pas' {CustomRenderMainForm},
|
|
CustomRenderData in 'CustomRenderData.pas' {CustomRenderDataMod: TcxWebHomeDataModule},
|
|
CustomRenderHome in 'CustomRenderHome.pas' {CustomRenderHomePage: TcxWebPageModule} {*.html};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
RunTestApplication(WebApplicationName);
|
|
Application.CreateForm(TCustomRenderMainForm, CustomRenderMainForm);
|
|
Application.Run;
|
|
end.
|