home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April A / Pcwk4a98.iso / PROGRAM / DELPHI16 / Fourpage / FOURPAGE.DPR next >
Text File  |  1995-08-25  |  266b  |  15 lines

  1. { by Mark Erbaugh, CIS 71370,1475 }
  2. { copyright (c) 1995 - Microcomputer Enhancement }
  3. program Fourpage;
  4.  
  5. uses
  6.   Forms,
  7.   Main in 'MAIN.PAS' {frmFourPage};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TfrmFourPage, frmFourPage);
  13.   Application.Run;
  14. end.
  15.