View Single Post
 
Old 02-23-2013, 05:04 PM
niton niton is offline Windows 7 64bit Office 2010 64bit
Competent Performer
 
Join Date: Jul 2012
Posts: 102
niton is on a distinguished road
Default

Hopefully you know some VBA

Code:
Public Sub BanishWebToolbar()
    CommandBars("Web").Enabled = False
End Sub


Sub RestoreWebToolbar()
    CommandBars("Web").Enabled = True
End Sub
More here http://word.mvps.org/faqs/macrosvba/...WebToolbar.htm
Reply With Quote