Question : .navigate more than one website in only one IE.7 microsoft windows in VBA Excel

Dear Expert,

I would like to open three websites or IE instances at the same time in only one IE.7 window. How can I do it ? My code following is only grab the website one by one only. The first www.yahoo.com is replaced by the last navigate command in VBA with www.google.com. We would like to keep those three at the same time in only one IE7 window. I know IE7 could make it but IE6 could not, Right ?
In other words, one IE window has three websites or instances I need, please help .
Please advise
Duncan
Sub AllwebsiteIE()
Dim myIE As SHDocVw.InternetExplorer
myIE.visible=True
myIE.navigate "http://www.yahoo.com"
myIE.navigate "http://www.aol.com"
myIE.navigate "http:/www.google.com"
end sub

Answer : .navigate more than one website in only one IE.7 microsoft windows in VBA Excel

actually, above code: one instance, but new windows as tabs can be controlled via, Internet Options -> General Tab -> Tabs Settings button -> "When a pop-up is encountered" -> circle-button-select "Always open pop-ups in a new tab"
Random Solutions  
 
programming4us programming4us