home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / OLESDI.DPR < prev    next >
Text File  |  1997-04-24  |  256b  |  15 lines

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