Can anyone tell me why IE8 returns an automation error - the server disconnected from its client. with this code :-
- Code: Select all
Set ie = CreateObject("InternetExplorer.Application")
With ie
.Visible = True
.navigate "https://reg.racingpost.com/modal_dialog/login.sd"
Do Until (.ReadyState = 4 And Not .Busy): DoEvents: Loop
It works fine with IE7 (which I have now gone back to.)
Duncan