Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Esc key like close Form 1

Status
Not open for further replies.

lreedy

Programmer
Jan 4, 2001
8
0
0
US
A newbie here would like to know how I can code the Esc key to also act like a Close Form command button.
I have the command button on my Form, but of course the users don't want to click it, they just want to hit Esc.

Thanks

 
You would just need to creat a macro called autokeys.
as per A97 follow these procedures

Assign an action or set of actions to a key

You can assign an action or set of actions to a specific key or key combination by creating an AutoKeys macro group. When you press the key or key combination, Microsoft Access carries out the action.

1 In the Database window, click the Macros tab.
2 Click New.
3 Click Macro Names on the toolbar.
4 In the Macro Name column, type the key or key combination to which you want to assign the action or set of actions.

For information on the key combinations you can use to make key assignments, click .

5 Add the action or set of actions you want the key or key combination to carry out. For example, you could add a RunMacro action that runs the Print Current Record macro when CTRL+P is pressed.

6 Repeat steps 4 and 5 for any other key assignments you want to make.
7 Save the macro group with the name AutoKeys.

The new key assignments are in effect as soon as you save the macro group and each time you open the database.

Note If you assign a set of actions to a key combination that is already being used by Microsoft Access (for example, CTRL+C is the key combination for Copy), the actions you assign this key combination replace the Microsoft Access key assignment.
 
a much simpler way:

in the properties of the Close button,
make the 'cancel' yes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top