How can I delete an item from listbox at particular location and not the SELECTED one?
Let's say if I have 4 items in listbox and I want to delete the one at index 2, how can I do that without selecting it.
ListBox.Items should be a List. More precise a ListBox.ObjectCollection
Have you tried :
myListBox.Items.RemoveAt(2);
listBox1.Items.RemoveAt(position);
ListBox1.Items.RemoveAt(anyindex);