Is there any way to apply a VCL style to TWebBrowser? I would like to change the scrollbars to fit my selected style.

Thank you.

link|improve this question

1  
As far as I know, you can only disable Windows Themes to classic style using DOCHOSTUIFLAG flag DOCHOSTUIFLAG_NOTHEME. If you extend this example and to the GetHostInfo method add the code pInfo.cbSize := SizeOf(TDocHostUIInfo); pInfo.dwFlags := $00080000; Result := S_OK; you will get classic Windows theme in your web browser control. But I know, that's what you (or anyone else) won't :) +1 here – TLama Dec 20 '11 at 22:53
Check this question stackoverflow.com/questions/8284003/… – RRUZ Apr 25 at 3:54
feedback

1 Answer

up vote 1 down vote accepted

TWebBrowser is a thin wrapper around the Internet Explorer ActiveX client. All of the UI behavior is controlled by IE, not the VCL. So I don't think you can control the look with VCL styles. You will have to use HTML/CSS styles instead.

link|improve this answer
Thank you, Remy. – Pateman Nov 7 '11 at 18:07
@RemyLebeau, it's possible apply a vcl style to the scrollbar of a TWebBrowser, check these links stackoverflow.com/questions/8284003/… theroadtodelphi.wordpress.com/2012/03/20/… – RRUZ Apr 25 at 3:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.