i am trying to open new tabs (which i can) and then close one of them (let's say the 2nd tab out of 5)
and another question is how can i get the document of that 2nd tab? 2ndTab.Document ????
would it be possible to launche new tab with some like this (i tried alot of methods did not get it to work)
i know this will never work.. but how can i do this? is there a wayCode:Option Explicit Private IE As Object Private IETab As Object Private Sub Form_Load() Set IE = CreateObject("InternetExplorer.Application") IE.Visible = True IE.Navigate "www.google.com" Set IETab = IE.Navigate2("www.hotmail.com", 2048) End Sub
i would like to be able to navigate to where i want with any tab i want




Reply With Quote
