-
Does anybody have a workaround for this:
Searching a listview by subitem, with partial match does not work like it is supposed to. It always returns Nothing unless the match is full.
Set itmX = lvwPart.FindItem(txtCustPart.Text, lvwSubItem, , lvwPartial)
-
Your code is working as it should!
lvwPartial only applies to the Text property NOT sub items
as for a work around...
code your own finditem type of function.
-
Yep, Thats what I did.
I needed to exclude the hyphens from the comparison, since the listview doesn't use them to sort on.