I want to ftp a file to a server from my VB code. I have never done anything like this before. All I need is someone to point me in the right direction. Thanks.
Printable View
I want to ftp a file to a server from my VB code. I have never done anything like this before. All I need is someone to point me in the right direction. Thanks.
This will connect to a server and upload the test.txt file to the default remote connection.
Hope that helps,Code:Inet1.AccessType = icUseDefault
Inet1.URL = "xxx.xxx.xxx.xxx"
Inet1.UserName = "me"
Inet1.Password = "***"
Inet1.RequestTimeout = 40
Inet1.Execute , "PUT C:\test.txt test.txt"
D!m