Is sus_fp bound to a field in your form's record source? Most likely it is. Otherwise sticking a value in it wouldn't accomplish anything, unless you save it somewhere later.
But if it's bound to a field, you want the value to come from the underlying table or query, or from Text107, depending on circumstance. What is that circumstance?
Typically, you might want the value to come from Text107 when a new record is added. In that case, the best thing to do is copy the value in Text107's AfterUpdate event procedure, like this:
Private Sub Text107_AfterUpdate
If Me.NewRec Then Me!sus_fp = Me!Text107
End Sub
The NewRec property is True when the current record is being added. So when Text107 is updated in a new record, it's value will be put in sus_fp. Rick Sprague
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.