I am after a statement that will clear all strings / data that is currently in a listBox, I have tried:
private void cleanlistbox(object sender, EventArgs e) { listBox1.ResetText(); }
What about
listbox1.Items.Clear();