Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Hi,
I know the keyboard shortcut to open thesaurus/research is shift + F7. Every time I open it, I want to close it with a keyboard shortcut. It would be great if shift + F7 was a toggle switch that opened AND closed it. Does anyone know of a keyboard shortcut to close thesaurus/research? The shortcut alt + shift + c is supposed to close panes but it doesn't close thesaurus/research. Thanks, Martin Gifford. |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Which Word version?
Word 2007: Create the following macro to intercept the command Sub ToolsThesaurusRR() With CommandBars("Research") .Visible = Not .Visible End With End Sub The same command is used in Word 2003, but works in a different manner Sub ToolsThesaurusRR() With CommandBars("Task Pane") .Visible = Not .Visible End With End Sub http://www.gmayor.com/installing_macro.htm -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org martin gifford wrote: Hi, I know the keyboard shortcut to open thesaurus/research is shift + F7. Every time I open it, I want to close it with a keyboard shortcut. It would be great if shift + F7 was a toggle switch that opened AND closed it. Does anyone know of a keyboard shortcut to close thesaurus/research? The shortcut alt + shift + c is supposed to close panes but it doesn't close thesaurus/research. Thanks, Martin Gifford. |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Word 2003 uses shared task panes with some shared commands. It is worth
noting that the Macro may fail in Word 2003 if the task bar has not first been displayed and you will get an error message. The following will trap that error and stop the macro. This is only likely to be a problem if you have used the Taskpane controller.dot add-in to disable the startup task pane. Sub ToolsThesaurusRR() On Error Resume Next With CommandBars("Task Pane") .Visible = Not .Visible End With End Sub -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org Graham Mayor wrote: Which Word version? Word 2007: Create the following macro to intercept the command Sub ToolsThesaurusRR() With CommandBars("Research") .Visible = Not .Visible End With End Sub The same command is used in Word 2003, but works in a different manner Sub ToolsThesaurusRR() With CommandBars("Task Pane") .Visible = Not .Visible End With End Sub http://www.gmayor.com/installing_macro.htm martin gifford wrote: Hi, I know the keyboard shortcut to open thesaurus/research is shift + F7. Every time I open it, I want to close it with a keyboard shortcut. It would be great if shift + F7 was a toggle switch that opened AND closed it. Does anyone know of a keyboard shortcut to close thesaurus/research? The shortcut alt + shift + c is supposed to close panes but it doesn't close thesaurus/research. Thanks, Martin Gifford. |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
remove keyboard shortcut for research pane in Word | Microsoft Word Help | |||
Word 2007 - Close all files keyboard shortcut | Microsoft Word Help | |||
Research Panel: keyboard shortcut to close? | Microsoft Word Help | |||
Is making a keyboard shortcut for toggle between fonts possible? | Microsoft Word Help | |||
Indicate keyboard shortcut to close a window | Tables |