Ed, you will find various surprises awaiting you here!
For example, when you tab from control 'A' to control 'B', the tab keypress
event occurs for control 'B' - not control 'A'!
My point in commenting on the previous post, is that most (but not all) of
the keys that activate the keypress event, will attempt to update the
control. Whereas *all* keys activate the keydown event, and many of those
*do not* try to update the control. So if you are looking for "updating"
keystrokes, it may be easier to do this in KeyPress rather than KeyDown.
But to complicate that, there is one "updating" key (Del? - I don't have
Access here to check) which fires KeyDown, but not KeyPress!
So you will probably need to do a fair bit of experimenting to get what you
want.
HTH,
TC