User Defign Hotkeys. How?

C

Chedva

In previous version there was a macro called somting like autoKeys that
declared control keys like when presing ^D a certain form would open . How
do I do it in accessXp
 
V

Van T. Dinh

It is still AutoKeys Macro in AccessXP.

Check Access Help on AutoKeys.

HTH
Van T. Dinh
MVP (Access)
 
M

Marshall Barton

Chedva said:
In previous version there was a macro called somting like autoKeys that
declared control keys like when presing ^D a certain form would open . How
do I do it in accessXp


It's still called AutoKeys and you do it the same way. The
only point you might be missing is that you have to create
the macro if it isn't already there.
 
J

John Vinson

In previous version there was a macro called somting like autoKeys that
declared control keys like when presing ^D a certain form would open . How
do I do it in accessXp


If you have a Button or Label control with a caption containing an
ampersand before one of its letters, such as

&Display Form X

it will display with the D underlined, and typing Alt-D will have the
same effect as clicking the button: its Click event will execute. That
event can have code to open your form (or whatever other action you'ld
like to take).
 
Top