QuantumDoja
Programmer
Hi, I am trying to perform a loop until all data in a dso has been downloaded, one thing is tho, if i remove the MsgBox it loops forever and if i put the message box in, it works fine, but i get an annoying pop-up. Any Ideas??
Here is the code:
Here is the code:
Code:
Found = False
Do
MsgBox(dsoMyData.Readystate)
If dsoMyData.Readystate = 4 then
Found = True
Else
End if
Loop Until Found = True