View Full Version : Function Key


Haytham
02-01-2002, 03:38 AM
Hi All...
How can I use the function key F1 to F12..
e.g. when press F1 I want to save record, and so on.. Is it possible to do so
Many thanks

David R
02-01-2002, 09:28 AM
The Function Keys tend to have assigned values in most Windows applications, and Access is no exception. F1, F2, F11, F6, and others are all 'taken'.

If you still want to do this, the KeyPress event is what you're looking for. This will give you the value of the key pressed, which allows you to orchestrate events accordingly.

Good luck,
David R

Haytham
02-01-2002, 01:24 PM
Very Thankful David.