disable 2003 shortcutkeys

  • Thread starter Thread starter Shawn
  • Start date Start date
S

Shawn

I have created a new ribbon in 2007 thanks to the help of Ron De Bruin.

My problem is I can't assign shortcut keys that have been set aside to
process 2003 shortcuts.

How can I avoid this?


Thanks,

Shawn
 
I can't assign shortcut keys that have been set aside to process 2003
Not sure I understand. OnKey works in Excel 2007 as in earlier versions to
capture any Excel shortcut key, e.g.:

Sub AssignCtrlS()
Application.OnKey "^s", "MySub"
End Sub

Sub MySub()
MsgBox "MySub running"
End Sub


--
Jim
|I have created a new ribbon in 2007 thanks to the help of Ron De Bruin.
|
| My problem is I can't assign shortcut keys that have been set aside to
| process 2003 shortcuts.
|
| How can I avoid this?
|
|
| Thanks,
|
| Shawn
|
 

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

Back
Top