0
MSComctlLib.ListItem loItem;
ListView1.ListItems.Add( , "prussell", "Paul Russell");
ListView1.ListItems.Add( , "dburton", "Dexter Burton");
ListView1.ListItems.Add( , "jthornton", "James Thornton");
loItem = ListView1.ListItems["dburton"];
if(!loItem == null)
{
debug.print("Found Dexter Burton");
}
This is the basic syntax you need to use, I'm not sure if it's all correct as I develop web and not windows interfaces.
Good Luck