Hello,

I made a listbox, checkbox style and....


For i = 0 To lstTest.ListCount - 1
If lstTest.Selected(i) Then
MsgBox lstTest.List(i)
End If
Next i

I found a way to show all the people I selected from a list box...through a message box. Let's pretend it's a list of people....

How would I grab from the listbox, say the names in the list are "joe shmo" and "britney spears" which are the ones I selected and then assign each one to it's own variable? (Maybe a string variable)?

Thanks.