Hello,
I've been Goggling and can not find any find any info on how to make IE open a new tab next to an existing page in an invisible mode.
Is this possible?
I see code that can make IE open a new page in invisible mode.
but I can not find any code to make this to open a new tab in invisible mode.
Due to recent security update at my work, my VBA seem to only load my data if it open in a new tab but not in a new page. By open the new tab, grab the data, and close the tab it make the screen flashes and hurt people eyes.
thank advance for your help.
I've been Goggling and can not find any find any info on how to make IE open a new tab next to an existing page in an invisible mode.
Is this possible?
I see code that can make IE open a new page in invisible mode.
Code:
Set objIE = New InternetExplorerMedium
With objIE
.Visible = False
.Silent = True
.Navigate myURL
Do Until .Busy = False And .ReadyState = READYSTATE_COMPLETE: DoEvents: Loop
strHTML = .Document.body.innerHTML
End With
but I can not find any code to make this to open a new tab in invisible mode.
Code:
myie.Navigate myURL, CLng(2048)
Do While myie.Busy = True Or myie.ReadyState <> 4: DoEvents: Loop
Due to recent security update at my work, my VBA seem to only load my data if it open in a new tab but not in a new page. By open the new tab, grab the data, and close the tab it make the screen flashes and hurt people eyes.
thank advance for your help.