My TWebBrowser flickers when its parent resizes.
I tried some of the things mentioned HERE such as DoubleBuffering, disabling FullRepaint, adding those WMEnterSizeMove and WMExitSizeMove procedures but nothing was worked yet.
EDIT:
Also, I tried ControlStyle := ControlStyle + [csOpaque];
and
procedure T<<yourclassorform>>.StopFlicker(var Msg: TWMEraseBkgnd);
begin
Msg.Result := 1;
end;
How do I minimize or stop the flickering?