Thanks. I have managed to create connection and get the files from server. The only problem that I am facing right now is when I tryp to upload a file to server I get the error "Access Denied". I have the access to that server and can create/copy/delete files and folders on the server. I am using the follwoing code
objFTP.RemoteHost = FTPHost
objFTP.Connect()
objFTP.User(FTPUser)
objFTP.Password(FTPPass)
objFTP.Put("\FilledOutForm.pdf", "\internettest\Test")
We have those folder on our server and also have that pdf file on c drive of my machine. Is there anything that I am doing wrong?