Thread: Shortcut Keys
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Jim Rech Jim Rech is offline
external usenet poster
 
Posts: 2,718
Default Shortcut Keys

By assigning the shortcut a null macro:

Sub KillCtrlA()
Application.OnKey "^a", ""
End Sub

to reset:

Sub AllowCtrlA()
Application.OnKey "^a"
End Sub

--
Jim Rech
Excel MVP
"John Whelan" wrote in message
...
How do I disable Shortcut Keys ?