home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / jwrite.lzh / EXAMPLE / MDIEDIT.DPR < prev    next >
Text File  |  1996-04-30  |  312b  |  16 lines

  1. program MdiEdit;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {MainForm},
  6.   Childwin in 'CHILDWIN.PAS' {MDIChild},
  7.   About in 'ABOUT.PAS' {AboutBox};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Title := 'J-Write Component Library Demonstration';
  13.   Application.CreateForm(TMainForm, MainForm);
  14.   Application.Run;
  15. end.
  16.