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

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.