git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
22 lines
608 B
ObjectPascal
22 lines
608 B
ObjectPascal
program FramesDemoWAD;
|
|
|
|
{$APPTYPE GUI}
|
|
uses
|
|
Forms,
|
|
ComApp,
|
|
cxWebDebugRun,
|
|
FramesMain in 'FramesMain.pas' {FramesMainForm},
|
|
FramesData in 'FramesData.pas' {FramesDataMod: TcxWebHomeDataModule},
|
|
FramesHome in 'FramesHome.pas' {FramesHomePage: TcxWebFramesetModule} {*.html},
|
|
Frame1 in 'Frame1.pas' {Frame1Page: TcxWebPageModule} {*.html},
|
|
Frame2 in 'Frame2.pas' {Frame2Page: TcxWebPageModule} {*.html};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
RunTestApplication(WebApplicationName);
|
|
Application.CreateForm(TFramesMainForm, FramesMainForm);
|
|
Application.Run;
|
|
end.
|