02-02-2010, 02:13 PM
Hi,
You can use the while wend as well.
Or you can insert Wait statement within it. But put wait only for 2 seconds or so, so that the moment object is loaded it does not go for the Wait statement inside.
HTH
Vijayendra
You can use the while wend as well.
Code:
While Browser("....").Object.Busy = True
'Do Nothing
Wend
Or you can insert Wait statement within it. But put wait only for 2 seconds or so, so that the moment object is loaded it does not go for the Wait statement inside.
Code:
While Browser("....").Object.Busy = True
Wait (2)
Wend
HTH
Vijayendra