I have created an automatic google search for a list of items. I have a form that resides in the upper left hand corner of the screen.
I would like to have the Internet Explorer pop-up load in the bottom right if possible, or at least below the 250 height x 300 width form. The goal is to prevent employees from moving the IE window each time a new search pops up.
Additionally, is it possible to use the code to add a new tab for searching, rather than a completely new window?
Here is the code I use -
Set browser = CreateObject("InternetExplorer.Application")
browser.Navigate (SearchURL)
browser.StatusBar = False
browser.Toolbar = False
browser.Visible = True
browser.Resizable = True
browser.AddressBar = True
I went off a whim and tried "browser.Location" but couldn't get that to work.
Thanks in advance!
John
I would like to have the Internet Explorer pop-up load in the bottom right if possible, or at least below the 250 height x 300 width form. The goal is to prevent employees from moving the IE window each time a new search pops up.
Additionally, is it possible to use the code to add a new tab for searching, rather than a completely new window?
Here is the code I use -
Set browser = CreateObject("InternetExplorer.Application")
browser.Navigate (SearchURL)
browser.StatusBar = False
browser.Toolbar = False
browser.Visible = True
browser.Resizable = True
browser.AddressBar = True
I went off a whim and tried "browser.Location" but couldn't get that to work.
Thanks in advance!
John