Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Would be grateful if someone could help on this. Recently I upgrade from Excel 2000 to the XP version. However, when I right click as usual, the short menu menu (with cut, copy, paste, insert...) did not appear. Is there any way I could activate back the menu when I right click the mouse? Thanks a million. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Some app may have disabled it. You can run this macro to reverse that:
Sub a() CommandBars("Cell").Enabled = True End Sub -- Jim Rech Excel MVP |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
go to the VBE (Alt+F11)
do Insert=Module paste in this code Sub EnableCell() With Application .Commandbars("Cell").Reset .Commandbars("Cell").Enabled = True End With End Sub Then go back to Excel ( Alt+F11) go to tools =Macro=Macros, select EnableCell and click Run. Unless you have some code that is actively disabling it, it should work. -- Regards, Tom Ogilvy "Yong Wah" wrote in message ... Hi Would be grateful if someone could help on this. Recently I upgrade from Excel 2000 to the XP version. However, when I right click as usual, the short menu menu (with cut, copy, paste, insert...) did not appear. Is there any way I could activate back the menu when I right click the mouse? Thanks a million. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Right click mouse menu for insert does not work | Excel Discussion (Misc queries) | |||
Menu which appears when you right mouse click in excel sheet | Excel Discussion (Misc queries) | |||
Shortcut menu won't appear when I click right mouse button. | Excel Discussion (Misc queries) | |||
Hyperlink Option on Right-click short-cut menu gone? | Excel Discussion (Misc queries) | |||
adding macro to right mouse click menu | Excel Discussion (Misc queries) |