C Chrisso Aug 11, 2008 #1 Hi All Is it possible to ask a form which control currently has the focus? Chrisso
S Stuart McCall Aug 11, 2008 #2 Chrisso said: Hi All Is it possible to ask a form which control currently has the focus? Chrisso Click to expand... Debug.Print Me.ActiveControl.Name
Chrisso said: Hi All Is it possible to ask a form which control currently has the focus? Chrisso Click to expand... Debug.Print Me.ActiveControl.Name
A Allen Browne Aug 11, 2008 #3 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
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