> Arno,
>
> I tried putting a call to TypeBinary just after filling in user,password and
> host name but before opening the connection and it didn't change anything.
>
>   FTP1.UserName := edUser.Text;
>   FTP1.Password := edPass.Text;
>   FTP1.HostName := edURL.Text;
>   FTP1.TypeBinary;
>   FTP1.TypeSet;
>   try
>     FTP1.Connect;
>     if FTP1.Connected then begin
>         ...

Woody, i would suggest :

   FTP1.UserName := edUser.Text;
   FTP1.Password := edPass.Text;
   FTP1.HostName := edURL.Text;
   try
     if FTP1.Connect then begin
                FTP1.TypeBinary;
                FTP1.TypeSet;
...

Binary and typeset are ftp commands, not ftpclient component parameters...

Guillaume MAISON
-----
Guillaume MAISON - [EMAIL PROTECTED]
83, Cours Victor Hugo
47000 AGEN
T�l : 05 53 87 91 48 - Fax : 05 53 68 73 50
e-mail : [EMAIL PROTECTED] - Web : http://nauteus.com


--
To unsubscribe or change your settings for TWSocket mailing list
please goto http://www.elists.org/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be

Reply via email to