how to stop the Web and Reviewing Toolbars from randomly beingdisplayed

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.
 
D

Dave Peterson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top