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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Disable/remove "Forward" & "Back" buttons in IE 1

Status
Not open for further replies.

AlanKTaylor

Programmer
Jan 16, 2002
5
GB
Hi,

Does anyone know how I can disable or remove the navigation buttons from IE (even the whole bar) while loading a page?
I am using an asp page which can encounter problems if the user presses these buttons.
Thanks.

Regards,

Alan. -Pseudopath

I think therfore I am.
 
Set objIE = WScript.CreateObject("InternetExplorer.Application")
objIE.MenuBar = false
objIE.Toolbar = false
objIE.StatusBar = false
objIE.AddressBar = false
objIE.Width = 640
objIE.Height = 480

' Navigate browser to login page
objIE.Navigate(" ' Show browser
objIE.Visible = true

Regards
Steve Friday
 

Thanks, it makes sense now.
Cheers! -Pseudopath

I think therfore I am.
 
Hi,

Any one know how to change this in the current windows using a function in the onload porperty of the body element?
Cheers -Pseudopath

I think therfore I am.
 

Okay, thanks.
Do you know of any way to disable the buttons then? -Pseudopath

I think therfore I am.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top