home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap16 / linklst2 / linklst2.dpr < prev    next >
Encoding:
Text File  |  1995-03-21  |  367 b   |  19 lines

  1. program Linklst2;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: LINKLST2 }
  5.  
  6. uses
  7.   Forms,
  8.   Main in 'MAIN.PAS' {DataForm},
  9.   Makedata in 'MAKEDATA.PAS',
  10.   Entry in 'ENTRY.PAS' {EntryForm};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.CreateForm(TDataForm, DataForm);
  16.   Application.CreateForm(TEntryForm, EntryForm);
  17.   Application.Run;
  18. end.
  19.