I think I'm struggling to find the right question to ask.
Following on from one of my previous threads.
Using the code below I can get to open Internet explorer and enter my url.
The actual url somehow causes a pop up box to appear with Save, Open and cancel buttons.
I am unable to simulate a click on the open button. it is either shift + O or ctrl + O I need to send.
I can not seem to send any key strokes to Internet Explorer either. The code below seems to give focus to explorer, I assume I need focus to be with excel and send to explorer but how??
spent hours during the day on this.
smiler44
Following on from one of my previous threads.
Using the code below I can get to open Internet explorer and enter my url.
The actual url somehow causes a pop up box to appear with Save, Open and cancel buttons.
I am unable to simulate a click on the open button. it is either shift + O or ctrl + O I need to send.
I can not seem to send any key strokes to Internet Explorer either. The code below seems to give focus to explorer, I assume I need focus to be with excel and send to explorer but how??
Code:
Set IE = CreateObject("InternetExplorer.Application")
With IE
.navigate "url goes here"
.Visible = True
End With
Set IE = Nothing
spent hours during the day on this.
smiler44