View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
SuperJas SuperJas is offline
external usenet poster
 
Posts: 66
Default Find Keyboard shortcut in a macro

Hi Phil,

To reset the Excel Shortcuts to their original functions, just start a new code module and run these lines of code:

------------------------------
Sub Reset()

Application.Onkey "^c", ""
Application.Onkey "^v", ""

End Sub
-----------------------------

Please let me know how you go.

SuperJas.