home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap11 / howto05 / delphi10 / cciwcc24.dpr < prev    next >
Encoding:
Text File  |  1996-06-12  |  534 b   |  21 lines

  1. program cciwcc24;
  2.  
  3. uses
  4.   Forms,
  5.   Cciccfrm in 'CCICCFRM.PAS' {CCINetCCForm},
  6.   Cciccinf in 'CCICCINF.PAS' {CCICInfoDlg},
  7.   Cciccprf in 'CCICCPRF.PAS' {CCICPrefsDlg},
  8.   Cciccpop in 'CCICCPOP.PAS',
  9.   Ccicnntp in 'CCICNNTP.PAS',
  10.   Ccftp in 'CCFTP.PAS';
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Title := 'CC InterNet Web Command Center';
  16.   Application.CreateForm(TCCINetCCForm, CCINetCCForm);
  17.   Application.CreateForm(TCCICInfoDlg, CCICInfoDlg);
  18.   Application.CreateForm(TCCICPrefsDlg, CCICPrefsDlg);
  19.   Application.Run;
  20. end.
  21.