Hello need help i have a listview and a textbox
I have this code
ListView_LOB.Focus()
For i = 0 To ListView_LOB.Items.Count - 1
If ListView_LOB.Items(i).SubItems(1).Text = TextBox1.Text Then
ListView_LOB.Items(i).Selected = True
End If
Next
it will highlight the item in Listview it seen in textbox1 for example "Erick"
but if i search again and change the textbox1 example is "Larrie"
it will highlight "Larrie" and also "Erick"