Auto fill certain fields in a data entry form Access 2003

  • Thread starter Thread starter cbianco
  • Start date Start date
C

cbianco

I want to enter some data in a form, hit the enter key and have the date
filled in for the next record and the focus set to the field below the date
field.

Any suggestions on how to accomplish this?
 
You can set the default of a control in its after update event. Try something
like:

Me.txtDate.Default = "#" & Me.txtDate & "#"
 
.... and the date you DO want to use is ...?

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Back
Top