Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
In Excel 2003, the right click options list includes a research option that pops up on me routinely. It's very irritating, esp. if I am just about to paste something because once the research window opens the paste option is also gone and must copy again. Any way to turn this off or remove from right-click menu? Thanks!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Only possible with VBA
If I have the correct number this will disable the option Run the macro one time Sub test() On Error Resume Next Application.CommandBars("Cell").FindControl(ID:=73 43).Enabled = True On Error GoTo 0 End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "gams sb" <gams wrote in message ... Hi In Excel 2003, the right click options list includes a research option that pops up on me routinely. It's very irritating, esp. if I am just about to paste something because once the research window opens the paste option is also gone and must copy again. Any way to turn this off or remove from right-click menu? Thanks!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oops
Must be False instead of True in the code -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Ron de Bruin" wrote in message ... Only possible with VBA If I have the correct number this will disable the option Run the macro one time Sub test() On Error Resume Next Application.CommandBars("Cell").FindControl(ID:=73 43).Enabled = True On Error GoTo 0 End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "gams sb" <gams wrote in message ... Hi In Excel 2003, the right click options list includes a research option that pops up on me routinely. It's very irritating, esp. if I am just about to paste something because once the research window opens the paste option is also gone and must copy again. Any way to turn this off or remove from right-click menu? Thanks!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Right click delete options | Excel Discussion (Misc queries) | |||
I am unable to right click a cell and get options to pop up... 2003 | Excel Discussion (Misc queries) | |||
further options following a command button click | Excel Discussion (Misc queries) | |||
how do I add more toolbar options to my right click options | Excel Discussion (Misc queries) | |||
Right click in cell menu options | Excel Discussion (Misc queries) |