I\'m trying to get some data out of this Webpage:
http://www.vodafone.de/privat/handys-tablets-tarife/smartphone-tarife.html
I want to have the whole table on t
Instead of:
Do DoEvents Loop Until ie.readyState = READYSTATE_COMPLETE
You could try:
Do While ie.Busy: DoEvents: Loop Do Until ie.ReadyState = READYSTATE_COMPLETE: DoEvents: Loop with ie ... end with