Is it possible to ask a form which control currently has the focus?

A

Allen Browne

Each form has an ActiveControl

If you are using code in the module of the form, it would be like this:
Debug.Print Me.ActiveControl.Name
 
Top