home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / objects / listsub / listsub.dpr next >
Encoding:
Text File  |  1995-03-21  |  253 b   |  16 lines

  1. program Listsub;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: LISTSUB }
  5.  
  6. uses
  7.   Forms,
  8.   Main in 'MAIN.PAS' {Form1},
  9.   Mylist in 'MYLIST.PAS';
  10.  
  11. begin
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.  
  16.