OK guys and dolls I am stumped.
Here is the code snippet.
This launches IE and goes to the correct page, no problem. What I want it to do is also maximize the browser.
The 2 modes that I thought would be helpful change the look and feel of the UI, TheaterMode and FullScreen.
FullSrenn turns to many things off to be useful.
I like TheaterMode but it also changes the overall look of the "home" screen and I can't change how things look and feel without many approvals.
Any thoughts????
Thanks
John Fuhrman
Titan Global Services
Here is the code snippet.
Code:
Set objIE=WScript.createobject("internetexplorer.application","objIE")
objIE.visible = True
objIE.TheaterMode = False
objIE.AddressBar = True
objIE.StatusBar = False
objIE.MenuBar = True
objIE.FullScreen = False
objIE.Navigate "about:blank"
Do Until objIE.ReadyState = 4
WScript.Sleep 100
Loop
URL = "//" & UserComputer & "/CoreDirector_" & strCoreServerVersion &_
"/login.aspx?BK=" & strBank
objIE.Navigate(URL)
This launches IE and goes to the correct page, no problem. What I want it to do is also maximize the browser.
The 2 modes that I thought would be helpful change the look and feel of the UI, TheaterMode and FullScreen.
FullSrenn turns to many things off to be useful.
Property FullScreen As Boolean
Maximizes window and turns off statusbar, toolbar, menubar, and titlebar.
I like TheaterMode but it also changes the overall look of the "home" screen and I can't change how things look and feel without many approvals.
Any thoughts????
Thanks
John Fuhrman
Titan Global Services