Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I would like to prevent the user to use Cut from the menu. I managed to disable the menu item using the code below, but have not managed to disable the Shortkey Ctrl+X. Any idea? thanks Sub preventcut() ' disable cut Application.CommandBars("Worksheet Menu Bar").Reset With Application.CommandBars("Worksheet Menu Bar").Controls .Item(2).Controls(3).Enabled = False End With End Sub Sub resetmenu() Application.CommandBars("Worksheet Menu Bar").Reset End Sub -- caroline |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Note you code is not working correct if the user insert controls
See this page for a way that use the ID http://www.rondebruin.nl/menuid.htm See point 3 for the shortcuts http://www.rondebruin.nl/menuid.htm#useful -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "caroline" wrote in message ... Hello, I would like to prevent the user to use Cut from the menu. I managed to disable the menu item using the code below, but have not managed to disable the Shortkey Ctrl+X. Any idea? thanks Sub preventcut() ' disable cut Application.CommandBars("Worksheet Menu Bar").Reset With Application.CommandBars("Worksheet Menu Bar").Controls .Item(2).Controls(3).Enabled = False End With End Sub Sub resetmenu() Application.CommandBars("Worksheet Menu Bar").Reset End Sub -- caroline |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I disable the right-click shortcut menu on charts | Excel Programming | |||
disable alt and control shortcut keys | Excel Programming | |||
Obtain value of a control on a shortcut menu | Excel Programming | |||
Shortcut Menu With Toggle Control | Excel Programming | |||
How to DISABLE THE CONTROL BREAK shortcut keys | Excel Programming |