Hello.
I can search for items in first listview column using FindItemWithText. I wonder is it possible to search in other listview columns and highlight found text, not all item line ? :?: Searched on google all day long but no luck... :sad:
My Listview contains multiple items and each item has 9 subitems. I would like to search in column 4.
Thanks in advance for any help! :icon_wink:
My code i use to search in first column.
Dim findItem As ListViewItem = ListView1.FindItemWithText(TextBox1.Text, False, 0, True)
If findItem IsNot Nothing Then
ListView1.MultiSelect = False
ListView1.TopItem = findItem
findItem.Selected = True
End If