Jan 15, 2004 #1 JackD4ME Programmer Joined Jun 4, 2002 Messages 228 Location 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 Joined Nov 8, 2002 Messages 53,708 Location 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 Joined Oct 2, 2002 Messages 3,094 Location 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")