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)
Private Sub ComboItemID_Change()
Me.ITEMID = [ComboItemID]
End Sub
Private Sub...