Auto Fill In Form

  • Thread starter Thread starter Debby Turner
  • Start date Start date
D

Debby Turner

In a form, when adding a new record, we'd like to have
some of the fields prefilled with the data from the last
record. How can we accomplish this?
 
Hi Debby,

In the AfterUpdate event of each control you can set the default value of
that control - for example -

me.Text1.defaultvalue=me.Text1
 
Back
Top