R
robot
Hello,
I use the following code in Word VBA for firing up the default browser and
opening the Google web site:
Dim objshell As Object
Set objshell = CreateObject("Shell.Application")
objshell.Open "http://www.google.com"
However, if the default browser is already running, the above VBA code will
open the Google web page by *replacing* the "last active web page" (i.e. the
web page that I last visited). How should I modify the code so that the
Google web page will open in a new web page instead?
Suggestions are most welcome!
I use the following code in Word VBA for firing up the default browser and
opening the Google web site:
Dim objshell As Object
Set objshell = CreateObject("Shell.Application")
objshell.Open "http://www.google.com"
However, if the default browser is already running, the above VBA code will
open the Google web page by *replacing* the "last active web page" (i.e. the
web page that I last visited). How should I modify the code so that the
Google web page will open in a new web page instead?
Suggestions are most welcome!