Delphi Programming Tips

Posted December 15th @ 7:08 pm by m3Rlin

Here are some useful tips to make your programs run faster, make the executables smaller and to ease the programming part

When your are going to use only one or two functions or procedures from a unit and you have the unit’s source code don’t include the whole unit in the [...]

How to Hide TWebBrowser Scrollbars

Posted December 15th @ 4:23 pm by m3Rlin

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;

Bookmark It

Hide Sites

« Previous Entries