CTRL+Page Up and CTRL+Page Down

T

Tom Ogilvy

see the onkey method in Excel VBA help for a way to redefine specific
keystrokes.
 
G

Guest

Disabled:
Application.OnKey "^{PGDN}", ""
Application.OnKey "^{PGUP}", ""

Enabled:
Application.OnKey "^{PGDN}"
Application.OnKey "^{PGUP}"

Thank you!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top