Thursday, October 2, 2014

How to stop the research pane from popping up in Outlook 2010

Press Alt-F11 to bring up the VB code editor
Press Ctrl-G to go to the immediate window (executes code as you type it)
Enter these commands to

1)verify research is enabled,
2)disable the research pane and
3)confirm it's now disabled

msgbox(Application.ActiveWindow.CommandBars("Research").Enabled)
Application.ActiveWindow.CommandBars("Research").Enabled = False
msgbox(Application.ActiveWindow.CommandBars("Research").Enabled)