IE.Navigate myURL, CLng(2048) Invisible Mode

n07cn3

New Member
Joined
Jan 17, 2018
Messages
20
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.


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.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Upon further research, I decided to Google my own title "IE.Navigate myURL, CLng(2048) Invisible Mode" and I came across this site below.


https://www.mrexcel.com/forum/excel...-internet-explorer-multiple-sessions-vba.html

which lead me to this site.

https://msdn.microsoft.com/en-us/library/dd565688(VS.85).aspx

appearantly there is an option to open the new tab in the back ground with this command.

navOpenInBackgroundTab


I have change my code to this.

Code:
myie.Navigate myURL, CLng(4096)

At least this will prevent the screen from "flashing". if anyone know how to make the new tab appear to be "invisible" I will gladly take that too.


I do hope this might be helpful to someone.
 
Upvote 0

Forum statistics

Threads
1,214,377
Messages
6,119,185
Members
448,872
Latest member
lcaw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top