victor
victor

Reputation: 1

ReadyState substitute for IE11 in VBA

Please, I've just bought a new pc that came with IE 11.

I have a lot of codes in VBA using the

While ie.Busy Or ie.ReadyState <> READYSTATE_COMPLETE: DoEvents: Wend

But it seems that microsoft removed this feature as it says in its site. They say that the Replacement feature are script.onload, but I am not sure how to use it in VBA.

Can anyone help me?

Many Thanks!

Upvotes: 0

Views: 2133

Answers (1)

Tim Williams
Tim Williams

Reputation: 166521

According to:

http://msdn.microsoft.com/en-us/library/ie/ms534359(v=vs.85).aspx

readystate is only removed for script elements...

Upvotes: 1

Related Questions