Hello,
How can I compare a listBox items to check that it has same text in it at other index or not.
P.S: want to compare single listbox elements not two listbox.
Thanks.
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.
Mohammad AmanPosted Nov 3, 2015, 6:03 AM
if (0 <= index)
{
listBox1.SelectedIndex = index;
}
}
Sreekanth ReddyPosted Nov 3, 2015, 5:56 AM