Jan 15, 2004 #1 JackD4ME Programmer Jun 4, 2002 228 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
I know this should be simple but how do I hide the IE toolbar in a script when opening a new page? Jack D
Jan 16, 2004 #2 PHV MIS Nov 8, 2002 53,708 FR Just had Code: toolbar=no in your window.open call Hope This Help PH. Upvote 0 Downvote
Jan 16, 2004 #3 mrmovie Technical User Oct 2, 2002 3,094 GB if your firing up IE from vbscript then appIE = CreateObject("Internet.Explorer" appIE.Visible = True appIE.Toolbar = 0 appIE.StatusBar = 0 appIE.Navigate("http://helloworld.com") Upvote 0 Downvote
if your firing up IE from vbscript then appIE = CreateObject("Internet.Explorer" appIE.Visible = True appIE.Toolbar = 0 appIE.StatusBar = 0 appIE.Navigate("http://helloworld.com")