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.
|
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.
| ||||
|
feedback
|
|
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. | |||||
feedback
|
DOCHOSTUIFLAGflagDOCHOSTUIFLAG_NOTHEME. If you extendthisexample and to theGetHostInfomethod add the codepInfo.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