How to do the alt + tab through vba?

VINOTH

New member
Joined
Sep 7, 2013
Messages
1
Reaction score
0
Points
1
Hi,
I want to open a google when i run the vba first time, when i run the vba second time it should display the previosuly opened google page browser(Open already in the first run) instead of open new browser.
I have used the following code to open the google. But dont know how to navigate to already opened browser.

Sub browser()
Dim RetVal
ActiveWorkbook.FollowHyperlink Address:="http://google.com"
End Sub
 
Back
Top