Form Refresh

  • Thread starter Thread starter Peter Singer
  • Start date Start date
P

Peter Singer

I have an app that initially loads a non-full sized form. As things
are happening I'm trying to update a label on the form with various
pieces of text. The only way it seems to work is if I call Refresh
after setting the label each time. This gives the form a "choppy"
appearance as the refreshes occur. Should I have to do this or is
there a better way?
 
Have you tried using: Label.Refresh() (or) Form.InvalidateRectangle(...)
followed by Form.Update()?

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top