go to first field in form

G

Guest

Hi, I am still learning, thanks for your patience.

What is best way to have cursor automatically move to first field in a form
when a new record is chosen? Not sure where to enter the condition or
exactly what syntax is. Thanks.

Was thinking to do it at the form properties "on focus" option.
 
G

Guest

Hi

Open the form in design view and select the View menu. Select the Tab order
option and move the fields around to the order that you want. If you want to
go to a specific field 1st then place this at the top of the list.
 
J

Jeff Boyce

In addition to Wayne's suggestion, if you want another approach, you could
use the OnCurrent event (fires with a new record) and put something like:
Me![TheControlYouWantFirst].SetFocus

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
G

Guest

thanks bunches. worked great.

Jeff Boyce said:
In addition to Wayne's suggestion, if you want another approach, you could
use the OnCurrent event (fires with a new record) and put something like:
Me![TheControlYouWantFirst].SetFocus

Regards

Jeff Boyce
Microsoft Office/Access MVP

BrokeLady said:
Hi, I am still learning, thanks for your patience.

What is best way to have cursor automatically move to first field in a
form
when a new record is chosen? Not sure where to enter the condition or
exactly what syntax is. Thanks.

Was thinking to do it at the form properties "on focus" option.
 

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

Top