Nope, not successful. In VB I have now -
Try
Limilabs.FTP.Log.Enabled = True
Myftp = New Ftp
Myftp.Connect(ftp_host)
Myftp.AuthTLS()
Myftp.Login(ftp_username, ftp_password)
Catch ex As Exception
' Some explanation
End Try
but the Myftp.AuthTLS() line trips to the Catch every time so I don't get to the login line.
Also FYI if I change to Myftp.AuthSSL() I get a warning: (Deprecated). BC40000: Public Overloads Sub AuthSSL() is obsolete.
Anything further I can try?
Nick