Example Delphi
Delphi Examples Collection
Today, Delphi is one of the popular desktop programming tool. There are thousand even million programmer in this world using delphi as their favorit tool. This site try to collect the examples, tips and tricks of Delphi programming. We collect, test them and redistribute the collection of delphi programming for you.
Post Meta
-
Database, Tips and Tricks -
Comments Feed -
 
 
 
 
Nice but limited to 31 columns.
Replace lmax: array [0..30] of Integer; with lmax: array of Integer;. Add SetLength(lmax,Columns.Count - 1); just before the first for n := 0 to Columns.Count - 1 do.
Oops, submitted to soon.
Also add
DataSource.DataSet.DisableControls;
and
DataSource.DataSet.EnableControls;
to beginning and ending of the
with Grid do block
to prevent flicker/scrolling of the DBGrid.