I am trying to connect to a FTP site to download files from a remote site. I have the correct settings to connect but when it tries to connect for a while it times-out. I experimented typing the URL in IE 5.0 and I get the same result. However I can connect fine using FTP explorer. I am really trying to avoid programming winsock function because I believe Inet will be easier to maintain. Here's what my code looks like. I would appreciate any type of input.<br><br>Private Sub cmdFTP_Click()<br> Inet1.AccessType = icDirect<br> Inet1.Protocol = icFTP<br> Inet1.RemotePort = "21"<br> Inet1.RemoteHost = "208.18.119.91"<br> Inet1.UserName = "xxxxxxxxxxx"<br> Inet1.Password = "xxxxxxxx"<br> picStatus.Print "Connecting..."<br> Inet1.OpenURL ("<A HREF="ftp://USERNAMEASSWORD@208.18.119.91/"" TARGET="_new">ftp://USERNAMEASSWORD@208.18.119.91/"</A><br> If Inet1.OpenURL = False Then<br> picStatus.Print "Error: Unable to Connect to Host"<br> Else<br> picStatus.Print "Connected to 208.18.119.91"<br> Call Dir<br> Call Transfer<br> End If<br>End Sub