how to stop the Web and Reviewing Toolbars from randomly beingdisplayed

  • Thread starter Thread starter Dave K
  • Start date Start date
D

Dave K

Hello - It seems that excel is randomly displaying the Web Toolbar and
Reviewing Toolbar---even though I never need to use either one of
them. Does anyone happen to know how I can stop this from happening?

Thanks.
 
You could just enter a command from the VBE immediate window:

Hit alt-f11
hit ctrl-g
type this and hit enter:
Application.CommandBars("web").Enabled = False
and
Application.CommandBars("Reviewing").Enabled = False
And close this window and try it out.

Change False to True when you decide you want it back.
 
Back
Top