foreach(string path in dlg.fileNames)
{
if (listView1.Items.Find(path, fales) = = null )
{
my method.......
}
}
how can i cheack listViewItems by item.Text.....????
how to change this code????
foreach(string path in dlg.fileNames)
{
if (listView1.Items.Find(path, fales) = = null )
{
my method.......
}
}
how can i cheack listViewItems by item.Text.....????
how to change this code????
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sateesh ArvetiPosted Mar 13, 2009, 2:56 AM
foreach(string path in dlg.fileNames)
{
if (listView1.FindItemWithText(path, false, 0) == null )
{
my method.......
}
}