All I want is to update an ListViewItem\'s text whithout seeing any flickering.
This is my code for updating (called several times):
listView.BeginUp
this will help:
class DoubleBufferedListView : System.Windows.Forms.ListView { public DoubleBufferedListView() :base() { this.DoubleBuffered = true; } }