D
Dave Midgley
Guest
I am a little confused as to when exactly the forms_current event is called.
I have a form with a text box called Last_Name, bound to the "Last Name" field in the form's table. I have the following code in the FormsCurrent event:
Dim test1, test2 As String
test1 = Me.recordset.Fields.item("Last Name").Value
test2 = Me.Last_Name.Value
Why is it that when I move from record to record in the form, when this event is called test2 contains the name in the current record, but test1 contains the name in the previous record?
I have a form with a text box called Last_Name, bound to the "Last Name" field in the form's table. I have the following code in the FormsCurrent event:
Dim test1, test2 As String
test1 = Me.recordset.Fields.item("Last Name").Value
test2 = Me.Last_Name.Value
Why is it that when I move from record to record in the form, when this event is called test2 contains the name in the current record, but test1 contains the name in the previous record?