home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
MDIAPP.DPR
< prev
next >
Wrap
Text File
|
1997-03-13
|
292b
|
16 lines
program Mdiapp;
uses
Forms,
Main in 'MAIN.PAS' {MainForm},
Childwin in 'CHILDWIN.PAS' {MDIChild},
About in 'about.pas' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.