1brainylack
Technical User
Please help! I have a form that uses a combobox to select the REBILL CUSTOMER. When a REBILL CUSTOMER is chosen, it does populate the text boxes with the customer info, address, city, state... However, when I go to other records with different REBILL CUSTOMERS, the populated text boxes remain the same as the last rebill customer that was chosen. I have the following as the AfterUpdate expression in the combo box:
Private Sub Rebill_Customer_AfterUpdate()
Me.AddressLine1 = Me.Rebill_Customer.Column(1)
Me.AddressLine2 = Me.Rebill_Customer.Column(2)
Me.AddressLine3 = Me.Rebill_Customer.Column(3)
Me.AddressLine4 = Me.Rebill_Customer.Column(4)
End Sub
Also, the text boxes are unbound, I'm guessing this is the problem, but not sure what to do to fix it.
Private Sub Rebill_Customer_AfterUpdate()
Me.AddressLine1 = Me.Rebill_Customer.Column(1)
Me.AddressLine2 = Me.Rebill_Customer.Column(2)
Me.AddressLine3 = Me.Rebill_Customer.Column(3)
Me.AddressLine4 = Me.Rebill_Customer.Column(4)
End Sub
Also, the text boxes are unbound, I'm guessing this is the problem, but not sure what to do to fix it.