Hi all I am trying to use the following code to find a value in listview first column cell but it keeps failing to find.The value exist but it says it didn't find the value. The value in listview first column is an IP value. I be happy if some one tell me how to make this work .Thanks
1 Code:
Set lvwitem = Listview1.FindItem(objNode.selectSingleNode("ip").Text) If lvwitem Is Nothing Then MsgBox "Couldn't be found" Set lvwitem = Listview1.ListItems.Add(, , objNode.selectSingleNode("ip").Text) End If




Reply With Quote