How to stop flickering when window resizes
HI,
I have a Form View with just the Web Browser control in it. This view is in one of the splitter windows that I have and when I resize my application, the control flickers terribly.
Is there anyway, I can disable refreshing until the user has finished the resizing?? Or is there any way to reduce the flickering effects??
Thanks!!
Steve
Re: How to stop flickering when window resizes
Your frame window is probably using a windows-class with the CS_HREDRAW and CS_VREDRAW styles. Register your own window class that doesn't have these styles, and use it for your frame window. Look up ::RegisterClass() or ::RegisterClassEx() for more information.