If you want to block the ability to use scrollbars in TWebBrowser then you can simply hide them. Here’s the code that’ll do that.
…
with WebBrowser1.OleObject.Document.Body.Style do
OverflowX := ‘hidden’;
OverflowY := ‘hidden’;
end;
…
If you want to block the ability to use scrollbars in TWebBrowser then you can simply hide them. Here’s the code that’ll do that.
…
with WebBrowser1.OleObject.Document.Body.Style do
OverflowX := ‘hidden’;
OverflowY := ‘hidden’;
end;
…
Here are 3 undocumented registry settings that modify the behavior of the Delphi component palette in a manner you may like. But why are there hidden features first of all and why are they not “available” to the public? They may may have been introduced too late into the product to get documented, or they [...]