So I have this code that I want to communicate wit IE to click a certain button? or element? (not sure what it is called).
The IE code when the button is already clicked shows:
Please help.
The IE code when the button is already clicked shows:
Code:
Sub Download090()
Dim URL As String
Dim IE As Object
Dim objElement As Object
Dim objCollection As Object
Set IE = CreateObject("InternetExplorer.Application")
URL = "http://dehensv035:100/"
With IE
.Navigate URL
.Visible = True
End With
While IE.Busy
DoEvents
Wend
Set objCollection = IE.Document.getelementbyName("ReportGroups[4].Reports[7].ReportID")
objCollection.Click
End Sub
Please help.