[C#] Listbox.RemoveAt (Thread friendly)
public void RemoveAt(int Remove,ListBox ListBox)
{
Invoke(new MethodInvoker(delegate { ListBox.Items.Remove(Remove); }));
}There ya go

That's a little snippet i wrote because I needed it.
You can also learn how to invoke controls fairly easily from the code.