Say I have a form on which a number of buttons exist. Everything works as it should when the buttons are clicked. How do I go about assigning keyboard shortcuts to my buttons so that Alt+A runs the action of Button A, Alt+B runs the action of button B etc.

seems like this would be trivial to do but I've not been able to see where I can set this.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

When creating the button use the ampersand before the letter you want to Alt+? in the label property.

Examples:

&File ---> File

&Edit ---> Edit

F&orge --> Forge

E&nough -> Enough

link|improve this answer
Thanks Nick. That was so simple :-) – Istari May 6 '09 at 12:19
Just realized my underlines didn't show up. I thought HTML worked here? – NickSentowski May 6 '09 at 17:20
This works on tabs too, although it messes up the text alignment in Access 2003. – Mr_Chimp Mar 20 at 15:47
feedback

If you wanted to set up a Global Keyborad Shortcut that would work no matter where you are in the current database then you can create a special macro called AutoKeys and set up like the following:

alt text

Note the special character used to represent special keys:

^ for Ctrl
+ for Shift
% for Alt

{F11} represents the F11 (function) Key

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.