You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
background tab
About this tag
The background tab tag on WindowsForum.com covers discussions about opening URLs in new tabs of Microsoft Edge, including the use of scripting constants like OpenInBackgroundTab to control whether a tab opens in the foreground or background. Users share VBScript code examples for automating tab behavior in Internet Explorer and Edge, focusing on the OpenInBackgroundTab flag. The tag is relevant for those interested in browser automation, tab management, and scripting solutions for Microsoft browsers.
Hi, I want to open a specific .url in a new tab of Microsoft Edge, this is the file I used for Explorer, can anyone convert for Edge?
thanks
Const OpenInNewTab = &H0800
Const OpenInBackgroundTab = &H1000
Site = "https:\\www.google.com"
Dim oIE
Dim objShell
Dim objWindows
Set objShell =...