hi
I have a textbox in my prog that uploads text to a blank Text.txt file on the internet(stored on geocities) Why isnt it working when i click the command to commence?
[Highlight=VB]
Private Sub cmdSend_Click()
Inet1.URL = "ftp://ftp.geocities.com/"
Inet1.UserName = "USERNAME"
Inet1.Password = "PASSWORD"
'Text.Text on prog, Text.txt on Geocities
Inet1.Execute , "PUT Text.Text Text.txt"
End Sub




Reply With Quote