Locate an Item in a Windows Forms ListBox Control
January 15, 2009
1 comment
Dim index As Integer
index = ListBox1.FindString(“Maria”)
If index <> ListBox.NoMatches Then
‘ Item found.
Else
‘ Item not found.
End If
Categories: VBNet



Comments