Componentes.Terceros.jvcl/official/3.00/examples/JvBackground/MDIForm/BkgndDemo.dpr

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.