Simple issue...

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/.
 
K

Klatuu

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
 
Top