home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / PROGRAM / DELPHI / 9703 / MEMO.DPR next >
Text File  |  1996-10-03  |  278b  |  16 lines

  1. program MEMO;
  2.  
  3. uses
  4.   Forms,
  5.   memoform in 'memoform.pas' {Form1},
  6.   memoabt in 'memoabt.pas' {AboutBox};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TAboutBox, AboutBox);
  14.   Application.Run;
  15. end.
  16.