Code:
'connects
With Inet1
    .Cancel
    .Protocol = icFTP
    .url = Text1.Text
    .UserName = Text2.Text
    .Password = Text3.Text
End With
and i have this sequence repeating fove times for the 5 different text boxes containing file name/paths.
If Text4.Text <> "" Then
        Dim filename As String
        filename = random & "--" & Text14.Text
        Inet1.Execute , "PUT " & Text4.Text & " " & "./public_ftp/" & filename
    While Inet1.StillExecuting
            DoEvents
    Wend
    Else
        Resume Next
    End If
and that's it...5 files being uploaded in the same sub...works just fine in 98 and NT but 95 just shoots through the sub and saying that the upload is complete.
Don't bother with the random and -- stuff it's just something that needs to be there.

Any ideas?
D!m

PS. And i can't use the cancel method...it just won't cancell. I posted a diff thread for that problem. =/ i'm just full of problems aren't i?

[Edited by Dim on 07-19-2000 at 12:25 AM]