jcardo
September 12th, 2001, 08:01 PM
In my aplication I'm using Microsoft ActiveX Data Object Libraray. I have populate with code a List Box (the user can select more than one item (MultiSelect 1- simple).How can I filter a Recordset with the multiple selection?
Here the code that I use to populate the list box
Private Sub Form_load()
With mrsPartCode
Do Until .EOF
LstPartCode.AddItem !PartCode & vbTab & !PartDesc
.MoveNext
Loop
.MoveFirst
End With
End Sub
Here the code that I use to populate the list box
Private Sub Form_load()
With mrsPartCode
Do Until .EOF
LstPartCode.AddItem !PartCode & vbTab & !PartDesc
.MoveNext
Loop
.MoveFirst
End With
End Sub