gheyman
Well-known Member
- Joined
- Nov 14, 2005
- Messages
- 2,347
- Office Version
- 365
- Platform
- Windows
I have a Combo Box (unbound) that when its changed, I want another field (a bound text box) to equal what was selected in the Combo box.
I tried versions of these, but its not working (two examples)
These are on a form that's source is a query
I tried versions of these, but its not working (two examples)
Code:
Private Sub ComboItemID_Change()
Me.ITEMID = [ComboItemID]
End Sub
Private Sub ComboItemID_Change()
ITEMID = ComboItemID
End Su
These are on a form that's source is a query