home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
jwrite.lzh
/
EXAMPLE
/
MDIEDIT.DPR
< prev
next >
Wrap
Text File
|
1996-04-30
|
312b
|
16 lines
program MdiEdit;
uses
Forms,
Main in 'MAIN.PAS' {MainForm},
Childwin in 'CHILDWIN.PAS' {MDIChild},
About in 'ABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.Title := 'J-Write Component Library Demonstration';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.