Discussion:
Setting window text w/o repainting?
(too old to reply)
Angel Tsankov
19 years ago
Permalink
Hello!

Can I set the text of a button without causing it to redraw itself?
David Lowndes
19 years ago
Permalink
Post by Angel Tsankov
Can I set the text of a button without causing it to redraw itself?
Try using WM_SETREDRAW to prevent the button from redrawing. I don't
know if it'll work as the button control may not pay attention to that
message.

Dave
Angel Tsankov
19 years ago
Permalink
Post by David Lowndes
Post by Angel Tsankov
Can I set the text of a button without causing it to redraw itself?
Try using WM_SETREDRAW to prevent the button from redrawing. I don't
know if it'll work as the button control may not pay attention to that
message.
Dave
It seems to works just as I need it to. Thanks, Dave!

Loading...