Hi there,
I am using this code ie.vbs to open a link without the address bar and status bar ( I don't want user to know the web address )
Now, it everything is ok, but just the internet explorer's caption shows address. Is there a way to change the caption to Internet Explorer only?
Cheers
==================== IE.Vbs ===============
Set fso = CreateObject("Scripting.FileSystemObject")
set WshShell = CreateObject("WScript.Shell")
Set IE = CreateObject("InternetExplorer.Application")
IE.navigate2 "'While IE.busy
' wscript.sleep 5
'Wend
IE.StatusText="Please enter your GUID & Password to login in"
IE.MenuBar=false
IE.AddressBar=false
IE.StatusBar=false
IE.Height=480
IE.Width=700
IE.Resizable=false
IE.Visible=True
I am using this code ie.vbs to open a link without the address bar and status bar ( I don't want user to know the web address )
Now, it everything is ok, but just the internet explorer's caption shows address. Is there a way to change the caption to Internet Explorer only?
Cheers
==================== IE.Vbs ===============
Set fso = CreateObject("Scripting.FileSystemObject")
set WshShell = CreateObject("WScript.Shell")
Set IE = CreateObject("InternetExplorer.Application")
IE.navigate2 "'While IE.busy
' wscript.sleep 5
'Wend
IE.StatusText="Please enter your GUID & Password to login in"
IE.MenuBar=false
IE.AddressBar=false
IE.StatusBar=false
IE.Height=480
IE.Width=700
IE.Resizable=false
IE.Visible=True