How to Duplicate a TTable

Posted December 15th @ 4:25 pm by m3Rlin

There are various ways to copy/duplicate databases. Using TBatchMover you can copy the structure and data but can’t copy the index files. Then again when you use FileCopy() you can’t copy the tables corresponding index files automatically and you have to define all the files. One of the ways to duplicate a database is to [...]

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