User Defign Hotkeys. How?

  • Thread starter Thread starter Chedva
  • Start date Start date
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
 
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.
 
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).
 
Back
Top