refresh()

  • Thread starter Thread starter David Sobey
  • Start date Start date
D

David Sobey

i'm calling refresh() on a custom UserControl, but for some reason
other functions get processed before OnPaint. Any ideas why?

cheers
dave
 
David,
i'm calling refresh() on a custom UserControl, but for some reason
other functions get processed before OnPaint. Any ideas why?

WM_PAINT messages (which result in OnPaint getting called) are low
priority messages that are sent only when there are no other messages
in the message queue.



Mattias
 
Back
Top