Click to See Complete Forum and Search --> : How to stop flickering when window resizes


Steve Chia
May 10th, 1999, 08:05 PM
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

Steve Dwire
May 11th, 1999, 09:38 AM
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.