Hello.

I'm using the following code to upload a file on an FTP server.



visual basic code:Inet.Protocol = icFTP

Inet.URL = "<ftp site>"
Inet.UserName = "<username>"
Inet.Password = "<password>"


Inet.Execute , "Put " & txtPath.Text & " " & "/www/" & CD.FileTitle

Note: CD = A Common Dialog control

This works fine on my two computers...
However, when other people use it, an error pops up saying:
"Run-time error '35754':

Unable to connect to remote host."

Does anyone know how to fix this?

Thanks!