I am trying to have VBA open an instance of IE and browse to a specific
URL
Private Sub DrawingIn_Click()
Set browser = CreateObject("InternetExplorer.Application")
browser.Navigate ("www.mywebpage.com")
browser.StatusBar = False
browser.Toolbar = False
browser.Visible = True
browser.Resizable = False
browser.AddressBar = False
End Sub
I got that portion to work
Now I need to search for a hypertext link named "spread***" within
the page i've navigated to. And after that click on them.
Can someone please help me complete the code to
1) Find the Spread*** hyperlink
2) Click it