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.
|