-
I have 5 files uploading one after another adter a command button is clicked...how would i get it to wait till the first file is uploaded then the start the second one and so on...
I've tried
While Inet1.StillExecuting
DoEvents
Wend
but that didn't seem to work...can someone help asap.
Thanx
-
I'd suggest you switch to a Winsock-control instead (gives you moe control).
Besides, the code you wrote works for me.
-
I think winsock would be better, you could use the SendComplete event to start the next send.
Sunny
-
ok, i'm not that great with winsock...how would i connect to an ftp and upload, i just need the basic code.
Thanx,
D!m
-
ftp....
wait a minute......doesn't winsock only work with UDP and TCP??
Sunny
-
i thought so... =/
so whould any one know how to put inet into a waiting sequence for each upload to finish?
-
Looked it up in MSDN, how about the StateChanged event?
"icResponseCompleted: The request has completed and all data has been received. "
Sunny