home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / source9 / scratch / mscomm / demo.dpr < prev    next >
Encoding:
Text File  |  1995-12-22  |  367 b   |  18 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {frmMain},
  6.   MSComm in 'MSCOMM.PAS',
  7.   Config in 'CONFIG.PAS' {frmSettings},
  8.   About in 'ABOUT.PAS' {frmAbout};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TfrmMain, frmMain);
  14.   Application.CreateForm(TfrmSettings, frmSettings);
  15.   Application.CreateForm(TfrmAbout, frmAbout);
  16.   Application.Run;
  17. end.
  18.