this is my line of codes. but it only compares to the equal match on the textbox. is there any way where i can match even just a keyword and will select all items with the same keyword that i type on textbox.
[LEFT]
For i = 0 To ListView1.Items .Count - 1
If ListView1.Items (i).SubItems(1) .Text.ToLower = TextBox1.Text.T oLower Then
ListView1.Items (i).Selected = True
ListView1.Ensur eVisible(i)
End If
Next
[/RIGHT]
tnx in advance!
[LEFT]
For i = 0 To ListView1.Items .Count - 1
If ListView1.Items (i).SubItems(1) .Text.ToLower = TextBox1.Text.T oLower Then
ListView1.Items (i).Selected = True
ListView1.Ensur eVisible(i)
End If
Next
[/RIGHT]
tnx in advance!
Comment