beanhead0321
New Member
- Joined
- Jul 8, 2011
- Messages
- 14
I have a form with a combo box and a textbox. I have entered the following code in the after update of the combo box.
This works, but if I have the data I want in column 2 or higher in the query under my combo box, my textbox won't display anything. Why is this happening?
Code:
Private Sub Combo12_AfterUpdate()
Me.Text24 = Me.Combo12.Column(1)
End Sub
This works, but if I have the data I want in column 2 or higher in the query under my combo box, my textbox won't display anything. Why is this happening?