How to Go to the First Field of a New Record

  • Thread starter Thread starter ridgerunner
  • Start date Start date
R

ridgerunner

I have a form for entering records into an inventory database that works
well except for the fact that when you add a new record, the cursor stays in
the last field instead of advancing to the first field of the new record.
How do I fix this?
TIA
 
ridgerunner said:
I have a form for entering records into an inventory database that
works well except for the fact that when you add a new record, the
cursor stays in the last field instead of advancing to the first
field of the new record. How do I fix this?
TIA

In the current event of the form...

Me!FirstControlName.SetFocus
 
Back
Top