.NET Listbox
Post # 62 permalink Topic #62 by mreschke on 2008-05-16 10:09:42 (viewed 366 times)
Table of Contents

Listbox Itteration[-][- -][++]

Code Snippet
For i = 0 To lstRecipients.Items.Count - 1
    If lstRecipients.Items(i).Selected Then
        tmp = lstRecipients.Items(i).Value  'This is the selected users ID from tblLogin (not email)
        lstRecipients.Items(i).Selected = False
    End If
Next