anyone have any experience with
downloading files from ftp within vb??
Printable View
anyone have any experience with
downloading files from ftp within vb??
There is a good example here.
Hope this helps.
sweet
thanks i'll take a look
Hope that helps,Code:With Inet1
.Cancel
.Protocol = icFTP
.url = "123.123.123.123"
.UserName = "me"
.Password = "xxxx"
End With
'upload a file
Inet1.Execute , "PUT C:\test.txt test.txt"
'download file and download it to C:\test.txt
Inet1.Execute , "Get test.txt C:\test.txt"
D!m
How would you incorporate the Inet control in the program to make that work?
Or is Inet already in there.
This would be an awesome program for a friend of mine who wants to upload pics VIA FTP, but isn't totally clued in on how to do it.
You would have to go "Project/Components/ and select "Microsoft Internet Transfer Control" and click on. Then double click on it in the toolbar and it will be added to your form. Then simply paste the code in.
Gl,
D!m
i need this to be in ascii any ideas
it seems to be in binary
thanks jason