Below is a simple script that will open the Microsoft home page. You can modify the toolbars' values to display or hide as you see fit.
Can someone help with the toolbar buttons? Even though the option exists to display or hide the entire toolbar, is there a way to display only certain toolbar buttons on the window?
For example, is there a way - through the script - to display just the back and forward buttons?
Thanks!
dim Window
set Window = CreateObject("InternetExplorer.Application")
Window.RegisterAsBrowser = True
Window.Navigate("Window.MenuBar = True
Window.ToolBar = True
Window.AddressBar = True
Window.StatusBar = True
Window.FullScreen = False
Window.Resizable = True
Window.Visible = True
Window.Width = 850
Window.Height = 720
Can someone help with the toolbar buttons? Even though the option exists to display or hide the entire toolbar, is there a way to display only certain toolbar buttons on the window?
For example, is there a way - through the script - to display just the back and forward buttons?
Thanks!
dim Window
set Window = CreateObject("InternetExplorer.Application")
Window.RegisterAsBrowser = True
Window.Navigate("Window.MenuBar = True
Window.ToolBar = True
Window.AddressBar = True
Window.StatusBar = True
Window.FullScreen = False
Window.Resizable = True
Window.Visible = True
Window.Width = 850
Window.Height = 720