Hello
Can you perform mulitple executes with the inet control one after another like this ?
Do
With Inet1
.RemoteHost = "10.0.0.0"
.RemotePort = "21"
.UserName = "x"
.Password = "xxx"
.Execute , "CD lpvaadat" ' Returns the directory.
.Execute , "GET *.xml c:\temp\ftp"
.Execute , "CLOSE" ' Close the connection.
End With
Loop Until Inet1.StillExecuting = False
