Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide Toolbar

Status
Not open for further replies.

JackD4ME

Programmer
Jun 4, 2002
228
0
0
US
I know this should be simple but how do I hide the IE toolbar in a script when opening a new page?

Jack D
 
Just had
Code:
 toolbar=no
in your window.open call

Hope This Help
PH.
 
if your firing up IE from vbscript then

appIE = CreateObject("Internet.Explorer")
appIE.Visible = True
appIE.Toolbar = 0
appIE.StatusBar = 0
appIE.Navigate("
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top