I Want to check subitems' text property with string var property and if those do not matches, highlight the non-matching text in listview1.subitem
Code:
dim data as string
'got string value in data
If founditem.SubItems(2).Text <> data then         'checking them
   'if true, highlight not equal text in lv1.subitem with yellow
  End if
Is it possible?