CHANGE RIGHT CLICK OPTIONS

  • Thread starter Thread starter gams sb
  • Start date Start date
G

gams sb

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!!
 
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:=7343).Enabled = True
On Error GoTo 0
End Sub
 
Back
Top