Text box help

  • Thread starter Thread starter G.I.O.
  • Start date Start date
Ah, I see. The If...Then would be necessary only if DefaultValue is dropped
from the code. DefaultValue is redundant with If Me.NewRecord, or If...Then
is redundant with DefaultValue. But would DefaultValue apply any time the
field is blank, whether or not it is a new record, or only with a new record?
I think I remember something from earlier in the thread that the field in
question could be blank.
 
An ACCESS form will insert the value from the Default Value property only at
the time of creating the new record. If you later delete the value from that
field, it will remain empty until you put something back into it
deliberately.
 
Back
Top