Showing posts with label listbox uniqueness. Show all posts
Showing posts with label listbox uniqueness. Show all posts

24 October 2011

don't allow duplicates for a listbox

if (!ContactsListBox.Items.Contains(item))
{
ContactsListBox.Items.Add(item);
}