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

  • Thread starter Thread starter Chrisso
  • Start date Start date
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
 
Back
Top