Hi,
I need some help trying to update a field in a form using the after update event of a combo:
Me.TextboxName = Me.ComboName.Column(4)
I'm using the field name of the textbox in my form as the control source for the field.
The Combo is a qry to use in multiple fields as an autofill display; but one field I want to save the info into the table's field.
I don't get any error messages, but I don't see the info in my table either.
Event Procedure on After Update:
Private Sub CompID_AfterUpdate()
Me.CompID = Me.Combo1.Column(4)
End Sub
Don't know what's wrong?
Thanks for any help!
I need some help trying to update a field in a form using the after update event of a combo:
Me.TextboxName = Me.ComboName.Column(4)
I'm using the field name of the textbox in my form as the control source for the field.
The Combo is a qry to use in multiple fields as an autofill display; but one field I want to save the info into the table's field.
I don't get any error messages, but I don't see the info in my table either.
Event Procedure on After Update:
Private Sub CompID_AfterUpdate()
Me.CompID = Me.Combo1.Column(4)
End Sub
Don't know what's wrong?
Thanks for any help!