Hi ppl.
Please help here. I want my visitors to upload files to my server, im using inet on a (.OCX) but the files dont appear on the the server, can anyone help me. Than you.
numibesiCode:Private Sub Command1_Click()
With Inet1
.Cancel
.Protocol = icFTP
.URL = "server"
.UserName = "username"
.Password = "password"
End With
If Text1 = "" Then
Exit Sub
Else
Inet1.Execute , "PUT" & Text1.Text & " " & Text1
Do
DoEvents
Loop While Inet1.StillExecuting
End If
End Sub
