I'm just trying to grab a value choosen by a combo box so I can use it else where in the form....the code below is all I've come up with and it doesn't grab the value clicked on in the combo box - it pulls nothing.
Combo box get's it's values from a SQL statement
Combo box get's it's values from a SQL statement
Code:
Private Sub cbo_Listing_AfterUpdate()
Dim varName As String
Me.cbo_Listing.Value = varName
End Sub