I have a .net app that I\'ve written in c#. On some forms I frequent update the display fields. In some cases every field on the form (textboxes, labels, picturebox, etc) ha
the short answer is
SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
the long answer is: see MSDN or google
just for fun, try calling Application.DoEvents() after each element is updated, and see if the problem gets better or worse ;-)