Disable 'Research'

GeekGirlInFurs
Lounger
Posts: 43
Joined: 01 Feb 2016, 08:43

Disable 'Research'

Post by GeekGirlInFurs »

Hello. Is it possible to disable the Research feature in Word that open a Research panel when to hold Alt and click on a word?

I have unchecked all the options for research sources, but it still opens up.

I find it way too easy to trigger that unintentionally.

Thank you.

User avatar
HansV
Administrator
Posts: 78365
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Disable 'Research'

Post by HansV »

Try this:
- Press Alt+F11 to activate the Visual Basic Editor.
- Press Ctrl+G to activate the Immediate window.
- Type or copy/paste the line listed below into the Immediate window.
- With the insertion point anywhere in that line, press Enter.
- Press Alt+F4 to close the Visual Basic Editor.

Code: Select all

CommandBars("Research").Enabled = False
Best wishes,
Hans

GeekGirlInFurs
Lounger
Posts: 43
Joined: 01 Feb 2016, 08:43

Re: Disable 'Research'

Post by GeekGirlInFurs »

That was it! Thank you!