Simple issue...

  • Thread starter Thread starter DanielWalters6
  • Start date Start date
D

DanielWalters6

Hi,
I'm looking for one line of code to jump keyboard focus to a particular
field within a form, which I can put inside my oncurrent event?

My control name is NAME.

tia for your help/.
 
First, change the name of the control. Name is an Access reserved word, and
it may cause problems.
To set the focus to the control:

Me.SomeName.Setfocus
 
Back
Top