home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap20 / twoforms / twoforms.dpr < prev    next >
Encoding:
Text File  |  1995-03-21  |  334 b   |  18 lines

  1. program Twoforms;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: TWOFORMS }
  5.  
  6. uses
  7.   Forms,
  8.   Main in 'MAIN.PAS' {Form1},
  9.   Details in 'DETAILS.PAS' {DetailView};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.CreateForm(TDetailView, DetailView);
  16.   Application.Run;
  17. end.
  18.