I have a textbox on a form that has a string listed as
Text1
Text2
Text3
I want to multiselect all three if they match the listbox values.
So far i tried this:
Dim i As Variant
For i = 0 To Me.Plus.ListCount - 1
If Me.Plus.Column(0, i) = Form_OrderForm.Notes Then
Me.Plus.Selected(i) = True
End If
Next i
but it only selects the first string in my textbox
any help would be great.
Text1
Text2
Text3
I want to multiselect all three if they match the listbox values.
So far i tried this:
Dim i As Variant
For i = 0 To Me.Plus.ListCount - 1
If Me.Plus.Column(0, i) = Form_OrderForm.Notes Then
Me.Plus.Selected(i) = True
End If
Next i
but it only selects the first string in my textbox
any help would be great.