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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top