home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 53 / IOPROG_53.ISO / soft / c++ / xceedftp.exe / Samples / Delphi / FTPClient / FTPClient.dpr next >
Encoding:
Text File  |  2000-10-05  |  360 b   |  17 lines

  1. program FTPClient;
  2.  
  3. uses
  4.   Forms,
  5.   unMain in 'unMain.pas' {frmMain},
  6.   unConnectInfo in 'unConnectInfo.pas' {frmConnect};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.Title := 'FTP Client sample application';
  13.   Application.CreateForm(TfrmMain, frmMain);
  14.   Application.CreateForm(TfrmConnect, frmConnect);
  15.   Application.Run;
  16. end.
  17.