Auto Fill In Form

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?
 
S

Sandra Daigle

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
 
Top