home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / fourpage / fourpage.dpr next >
Encoding:
Text File  |  1995-12-22  |  266 b   |  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.