How do I force windows NOT to redraw anything in my dialog when the user is resizing my dialog?
You can’t prevent painting during resizing, but you can (with care) prevent repainting which is where flicker comes from. first, the bitblt. There a two ways to stop the bitblt thing. If you own the class of the top level window, then just register it with the CS_HREDRAW | CS_VREDRAW styles. This will cause a … Read more