Componentes.Terceros.jvcl/internal/3.36/1/examples/JvBackground/MDIForm/BkgndDemo.dpr
2009-03-04 12:31:55 +00:00

20 lines
606 B
ObjectPascal

program BkgndDemo;
uses
Forms,
MDIBkgndDemoMain in 'MDIBkgndDemoMain.pas' {MDIMainForm},
MDIBkgndDemoSettings in 'MDIBkgndDemoSettings.pas' {BkgndImageSettings},
MDIBkgndDemoFrame in 'MDIBkgndDemoFrame.pas' {DemoFrame: TFrame},
MDIBkgndDemoChld in 'MDIBkgndDemoChld.pas' {MDIChildForm};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'MDI Wallpaper demo';
Application.CreateForm(TMDIMainForm, MDIMainForm);
Application.CreateForm(TBkgndImageSettings, BkgndImageSettings);
Application.CreateForm(TMDIChildForm, MDIChildForm);
Application.Run;
end.