Autocomplete Form with last values

L

Luiz Longo

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

Thanks and sorry about my bad english.
 
S

Sprinks

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
 
Top