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
WendOr 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)
WendHTH
Vijayendra

