Ie loading but code is not vba is not resuming

NARAYANAN

New Member
Joined
May 12, 2017
Messages
2
Dear team

the below code is written to open a URL and post comments.

when i run the code the URL is opening and a debugg is comming mentioning "run time error 91" ( object variable or block variable is not set).

if i open the code and press F5 then the code is resuming correctly.

below is my code:

Public Sub IE_LatLong()

Dim IE As Object

Dim address As String
address = Range("E94").Value

Set IE = CreateObject("InternetExplorer.Application")

With IE
.Visible = True
.Navigate Range("E95").Value
While .Busy Or .readyState <> 4: DoEvents: Wend

Const RepeatMinutes = 5 ' Time interval in minutes for repeating of this macro
Const WaitSeconds = 10 ' Waiting time interval in secondss for "IE is ready" state

IE.Document.getElementsByClassname("new_comment_textarea")(0).Value = address
IE.Document.getElementById("submit_new_comment").Click

While .Busy Or .readyState <> 4: DoEvents: Wend
End With
Set IE = Nothing
End Sub
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!

Forum statistics

Threads
1,215,692
Messages
6,126,230
Members
449,303
Latest member
grantrob

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top