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

  1. program menu;
  2.  
  3. uses
  4.   Forms,
  5.   menudemo in 'menudemo.pas' {MenuForm},
  6.   about in 'about.pas' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TMenuForm, MenuForm);
  13.   Application.Run;
  14. end.
  15.