The sequence "Alt" + clicking creates a very annoying and persistent "research" toolbar in Office 2010.
How can I remove this via VBA?
The sequence "Alt" + clicking creates a very annoying and persistent "research" toolbar in Office 2010.
How can I remove this via VBA?
Copyright © 2021 Jogjafile Inc.
You can also do this in Outlook via VBA. Office 2010 no longer lets you remove via most of these solutions.
Word, PowerPoint, and Excel allow you to use this easy. Simply using:
will disable the commandbar from those applications.
Outlook requires more hassle as it uses both Explorers and Inspectors, which in different contexts both have this commandbar enabled. The solution is therefore two part.
Part one is setting up
WithEvents
to handle creation of each new Inspector. Generally these are whenever you OPEN a message/event/etc, and they are created/destroyed each time. So even if you hit every current Inspector, your new ones will not have the commandbar disabled.Put the following into ThisOutlookSession in your VBA editor (Alt+F11). Each new inspector (and explorer, too, though I've yet to have an explorer created) will have its command bar disabled.
However this only will get the menu gone from some of the views in Outlook. You will still need to run the following macro to remove it from all explorers. As best I can tell this is persistent when you close/reopen Outlook: