Feb 17, 2006 #1 B bjwade62 Centurion Joined Oct 31, 2003 Messages 104 Should be easy but I'm spinning my wheels. Any help?
Feb 17, 2006 #2 C Cags Contributor Joined Feb 19, 2004 Messages 695 Location Melton Mowbray, England Do you wish to check if an item is unique when you are adding it, or check through a list and remove and duplicate values?
Do you wish to check if an item is unique when you are adding it, or check through a list and remove and duplicate values?
Feb 17, 2006 #3 B bjwade62 Centurion Joined Oct 31, 2003 Messages 104 Got it. Thanks. If Not (combobox1.Items.Contains(STRING)) Then combobox1.items.add(STRING) End If Cags said: Do you wish to check if an item is unique when you are adding it, or check through a list and remove and duplicate values? Click to expand...
Got it. Thanks. If Not (combobox1.Items.Contains(STRING)) Then combobox1.items.add(STRING) End If Cags said: Do you wish to check if an item is unique when you are adding it, or check through a list and remove and duplicate values? Click to expand...