I am trying to concatenate the value of Combo1 into the recordset field. The Combo1 box contains the letters A,B,C,D.... When the program executes, it doesn't get the value of the item in the combo box but the position. i.e. 1,2,3,. How do I get it to recognize the value of each position in the combo box ??? Here is the code I am using.
Code:
Private Sub Combo1_AfterUpdate()
Dim db As DAO.Database, rst As DAO.Recordset, strSQL As String
Set db = CurrentDb
Set rst = db.OpenRecordset("TableName")
Me.TextBox = rst("TopicHead" & Me.Combo1.Value)
End Sub