TAdvWebBrowser - Disable Blue Background

Is there any way to disable the blue version background when the control is created? I want to automatically navigate to a URL from the form's OnShow event but you can see it briefly appear with the blue background before it loads the URL, which doesn't look good.

Hi,

Yes you can use

AdvWebBrowser1.LoadHTML('');

in the form constructor.

Thank you for confirming. I did wonder about that but was worried if the control would not be "ready" by the time I reached OnShow. Good to know.