Answers for "HOW TO MAKE SEARCH IN LISTBOX VB.NET"

0

HOW TO MAKE SEARCH IN LISTBOX VB.NET

Dim i As Integer = ListBox1.FindString(TextBox1.Text)
    ListBox1.SelectedIndex = i
    If TextBox1.Text = "" Then
        ListBox1.SelectedIndex = -1
    End If
Posted by: Guest on July-09-2021

Browse Popular Code Answers by Language