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

controlling the back button when using bookmarks

Status
Not open for further replies.
Feb 2, 2005
54
0
0
US
Is there a way to control the behavior of the back button after clicking on a bookmark to take the user to the previous bookmark instead of the previous link? I like to keep all navigation to pages instead of to links.

Thanks.
 
Well, I found a way to do it, but am still looking for sexier ways of doing it. Here is what I have done.

Code:
Sub AutoOpen()
'
' Full_Page_View Macro
' Open Document in Print Preview with Web Toolbar and No Magnifier
'
    ActiveDocument.PrintPreview
    CommandBars("Web").Visible = True
    ActiveDocument.ActiveWindow.View.Magnifier = False

End Sub

This works great if the user has a security setting of low...works a little less if they have Medium set as they will have to allow the macro to run...doesn't work at all with security set to High.

Any thoughts are appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top