J
jlgandara
I have a combobox that populates a textBox. That is working fine. What
I can't figure out is that when I want to add another record to the
same textBox, coming from the same comboBox, I'm not able to do so. I
want to know if there is a way to tell VBA to put that new record under
the previous one. Here is the code I have so far.
Private Sub Command130_Click()
Dim aov100 As String
aov100 = Me.Combo126.Value
Me.txtTeam.Value = aov100
Me.teamMem.Value = aov100
Me.Combo126.Value = ""
End Sub
teamMem is the field in the table and it's data type is set to text.
Thanks
I can't figure out is that when I want to add another record to the
same textBox, coming from the same comboBox, I'm not able to do so. I
want to know if there is a way to tell VBA to put that new record under
the previous one. Here is the code I have so far.
Private Sub Command130_Click()
Dim aov100 As String
aov100 = Me.Combo126.Value
Me.txtTeam.Value = aov100
Me.teamMem.Value = aov100
Me.Combo126.Value = ""
End Sub
teamMem is the field in the table and it's data type is set to text.
Thanks