R
Ruth
Hi again
I am trying to get a combo box (called "Combo119)in a form called Trip
Entry, with 2 columns called "Customer Name" and "Customer Code" to save both
in a Table called Tracking Table. Customer Code is a primary key. I went to
the propery box under events, in the after update I entered the following:
Private Sub Combo119_AfterUpdate()
Me.Tracking_Table.Column(2).Value = Me.Combo119.Column(1)
Me.Tracking_Table.Column(1).Value = Me.Combo119.Column(2)
Please let me know what is wrong with it.
I am trying to get a combo box (called "Combo119)in a form called Trip
Entry, with 2 columns called "Customer Name" and "Customer Code" to save both
in a Table called Tracking Table. Customer Code is a primary key. I went to
the propery box under events, in the after update I entered the following:
Private Sub Combo119_AfterUpdate()
Me.Tracking_Table.Column(2).Value = Me.Combo119.Column(1)
Me.Tracking_Table.Column(1).Value = Me.Combo119.Column(2)
Please let me know what is wrong with it.