Autocomplete Form with last values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want know how autocomplete my form with values from the last register.

Thanks and sorry about my bad english.
 
Luiz,

The easiest way to do this is to use each control's AfterUpdate event to set
its DefaultValue property:

Me!MyControl.DefaultValue = Me!MyControl

Sprinks
 
Back
Top