Which control has the focus?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a straightforward way to determine which control in a form has the
focus?
 
Dim ctl As Control
Dim strCtlName as String
set ctl = screen.ActiveControl
strCtlName = ctl.Name
 
Yes! Yes! Yes! Thank you!

Duane Hookom said:
Dim ctl As Control
Dim strCtlName as String
set ctl = screen.ActiveControl
strCtlName = ctl.Name
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top