PDA

Click to See Complete Forum and Search --> : inet control use


Jan 2nd, 2001, 04:10 AM
I am accessing a directory with the inet ftp control,and
then I use the command inet.ececute get xxx.xxx xxx.xxx in a loop. Then when I call this function from inside anothr function I get the"still executing last command message"
Anyone can help?

[Edited by sweetie_il on 01-03-2001 at 12:42 AM]

dj4
Jan 8th, 2001, 12:40 AM
Try this way:

Inet1.Execute, Get Something
Do
DoEvents
Loop While Inet1.StillExecuting

-Dj4

Jan 8th, 2001, 01:33 AM
thanks for the answer - does that mean that
I can put the entire piece of code into another loop?
I understand that what you sent me it's just to make sure that the inet.execute finished. Now I want it to do it the whole thing again.