I try to clear my listview but the clear method doesn\'t work:
myListView.Items.Clear();
This doen\'t work. When i put a breakpoint at this
Try this ...
myListView.DataSource = null; myListView.Items.Clear();