-
=/ can someone help me fix this problem...
What's the diff between these 2 statements?
Inet1.Execute , "PUT ", Text1.Text, Text2.Text
Inet1.Execute , "PUT C:\stuff.txt stuff.txt"
the second one uploads fine, but the first one won't.
Text1.TExt = Path
Text2.Text = filename
I'm siply uploading files to an ftp...
Thank you,
D!m
-
The first parameter is for the address of the computer you are connecting to. So the first one tells it to connect to the computer PUT and run the command text1 text2
-
So how would i upload files that are specified in a text box?
-
Inet1.Execute , "PUT " & Text1.Text & " " & Text2.Text
Inet1.Execute , "PUT C:\stuff.txt stuff.txt"
-
Thanx, i figured it out :)
now i just have to place it in a waiting sequence b4 each upload.
Laterz,
D!m