Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Duplicates in a Listbox 2

Status
Not open for further replies.

rstum2005

Programmer
Jun 9, 2005
117
US
Im having problems removing dupes from a listbox. It seems to work well on smaller lists but for some reason on other lists it removes more than just dupes.

Code:
if(dupes==false)
{
for (int i = 0; i < listBox1.Items.Count; i++)
{
for (int j = 0; j < listBox1.Items.Count; j++)
{
if (listBox1.Items[i].ToString() == listBox1.Items[j].ToString())
{				
listBox1.Items.Remove(listBox1.Items[i].ToString());
statusBar1.Panels[0].Text ="Processing: " + i;
}
}
}
 
JurkMonkey, I'd just though that I would confess to being and idiot:

Code:
    For a As Integer = 0 To ListBox1.Items.Count - 1
      For b As Integer = ListBox1.Items.Count - 1 To [b]a + 1[/b] Step -1
        If ListBox1.Items(a).ToString = ListBox1.Items(b).ToString Then
          ListBox1.Items.RemoveAt(b)
        End If
      Next
    Next

works perfectly (as of course do all three of your examples)

[vampire][bat]
 
It's all good. I spent an entire day once trying to figure out why I couldn't see a method in an interface.

Who'd have thought it needed to be public :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top