I have a listbox being populated from a SQLDATA pull, and it pulls down some columns that i dont want like OBJECT_dfj, OBJECT_daskd. The key is all of these being with OBJE
You can try this also, if you don't want to deal with the enumerator:
object ItemToDelete = null; foreach (object lsbItem in listbox1.Items) { if (lsbItem.ToString() == "-ITEM-") { ItemToDelete = lsbItem; } } if (ItemToDelete != null) listbox1.Items.Remove(ItemToDelete);