Tab Order Stops

R

Robert Slavings

It's been a LOOONG time since I had to put the "New Record Button" on a form,
But now that I've done it., my question is, "How do I make the cursor
magically jump to the first box? when the button is clicked?"
 
J

John Vinson

It's been a LOOONG time since I had to put the "New Record Button" on a form,
But now that I've done it., my question is, "How do I make the cursor
magically jump to the first box? when the button is clicked?"

Add a line in the button's On Click code:

Me!firstcontrolname.SetFocus

John W. Vinson[MVP]
 
K

KARL DEWEY

It's been a LOOONG time since I had to put the "New Record Button" on a form,
But now that I've done it., my question is, "How do I make the cursor
magically jump to the first box? when the button is clicked?"
 
Top