What I mean is they enter a number or code in a field but it changes everyday
and everytime a different processors enters the form. I am wanting the field
to stay the same (what they type in there) until they physically change it.
I don't want them to have to retype that field everytime they tab only if it
changes.
Ah. Ok, you can set its DefaultValue property in the AfterUpdate event of the
textbox. Open the form in design view; find this control and view its
Properties. Click the ... icon by the After Update event on the Events tab and
choose "Code Builder". Edit the code to:
Private Sub controlname_AfterUpdate()
Me!controlname.DefaultValue = Chr(34) & Me!controlname & Chr(34)
End Sub
replacing controlname by the actual name of the control. This will make the
entered value "sticky"; it can be manually changed but will repeat until
that's done.