wackywoo105
Registered User.
- Local time
- Yesterday, 21:36
- Joined
- Mar 14, 2014
- Messages
- 203
I've been using:
between pages.
although on initial load I use:
I note if I interact with a page just after loading I get an error so have added:
Can anyone help with the best code to use between pages before I try something like ticking a box?
Code:
While IE.busy
DoEvents
Wend
Loop
between pages.
although on initial load I use:
Code:
Do Until IE.ReadyState = 4 And Not IE.busy
DoEvents
Loop
I note if I interact with a page just after loading I get an error so have added:
Code:
x = Timer + 2
Do While Timer < x
DoEvents
Loop
Can anyone help with the best code to use between pages before I try something like ticking a box?