home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / OLEMDI.DPR < prev    next >
Text File  |  1996-05-08  |  254b  |  15 lines

  1. program olemdi;
  2.  
  3. uses
  4.   Forms,
  5.   mdimain in 'mdimain.pas' {MainForm},
  6.   mdichild in 'mdichild.pas' {MDIChildForm},
  7.   about in 'about.pas' {AboutBox};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.Run;
  14. end.
  15.