Hi guys,

I'm trying to create a macro which automates filling out details in IE.

It works fine except on the website I want to interact with (its salesforce).

I always get an error stating "the object invoked has disconnected from its clients".

I'm gathering its the website, is the correct? Is there any ways around it?

My code - its;
Dim objIE As InternetExplorer
Dim aEle As HTMLLinkElement
Dim y As Integer
Dim result As String '

Set objIE = New InternetExplorer
objIE.Visible = True
objIE.navigate ActiveCell.Offset(0, 12)

Do While objIE.Busy = True Or objIE.readyState <> 4: DoEvents: Loop <--- always stops here..