Flickering Help

Started by
1 comment, last by Riekistyx 18 years, 1 month ago
I have created a window with a black background and a child dialog attached to it. Now when I resize the window the Dialog flickers... I am programming this in win32 c++... how do I stop the flicker?
Advertisement
Everything you never wanted to know: http://www.catch22.net/tuts/ (search for 'flicker' to find the specific one for your purposes). That is one of the best sites out there.
Now here is one solution which will cause another problem but... You might not care...

[source="cpp"]//However you handle your messages.... switch(msg){   case WM_ERASEBKGND:      return 0; // :)}


This topic is closed to new replies.

Advertisement