How to read multiple values form list box control?
Printable View
How to read multiple values form list box control?
Here's some code...
Enjoy! :)Code:
For i = 0 To lstTags.Items.Count - 1
If lstTags.Items(i).Selected Then
tag = lstTags.Items(i).ToString()
End If
Next