S
SITCFanTN
I have a form that I have a few data entry fields prefill the last text
entered. For example, there is a field for Zip Code. Once the zip code is
entered, and the record saved, the after update command retains the zip code
entered. I use the code of
Private Sub Zip_AfterUpdate()
Me.Zip.DafaultValue = Me.Zip
End Sub
My problem is I have one of the fields that is not retaining the data
entered. Here is the code I'm using
Privagte Sub AssignedChap_AfterUpdate()
Me.AssignedChap.DefaultValue = Me.AssignedChap
End Sub
In the data entry field on the form, the text, "#Name?" displays instead of
the text previously entered. What does this mean and why is my text not
displaying.
As always I appreciate your help, thank you.
entered. For example, there is a field for Zip Code. Once the zip code is
entered, and the record saved, the after update command retains the zip code
entered. I use the code of
Private Sub Zip_AfterUpdate()
Me.Zip.DafaultValue = Me.Zip
End Sub
My problem is I have one of the fields that is not retaining the data
entered. Here is the code I'm using
Privagte Sub AssignedChap_AfterUpdate()
Me.AssignedChap.DefaultValue = Me.AssignedChap
End Sub
In the data entry field on the form, the text, "#Name?" displays instead of
the text previously entered. What does this mean and why is my text not
displaying.
As always I appreciate your help, thank you.