I have a combo box (CustID) w/3 columns (CustID, Customer, Phone, col. 1 is bound. I want col.3 to fill in the bound txtPhone box on my form after choosing the CustID. Here's my present code which always returns a null value:
Private Sub CustID_AfterUpdate()
Me!txtPhone = Me!CustID.Column(3)
End Sub
I know I'm missing something simple! Thanks for the help!!!!!
Private Sub CustID_AfterUpdate()
Me!txtPhone = Me!CustID.Column(3)
End Sub
I know I'm missing something simple! Thanks for the help!!!!!
