Deprecated: Assigning the return value of new by reference is deprecated in /home/exampled/public_html/wp-includes/cache.php on line 99

Deprecated: Assigning the return value of new by reference is deprecated in /home/exampled/public_html/wp-includes/query.php on line 21

Deprecated: Assigning the return value of new by reference is deprecated in /home/exampled/public_html/wp-includes/theme.php on line 576
Comments on: Autosize DBGrid http://exampledelphi.com/delphi.php/tips-and-tricks/autosize-dbgrid/ Delphi Examples Collection Tue, 07 Feb 2012 15:16:02 +0000 http://wordpress.org/?v=2.5 By: tmj http://exampledelphi.com/delphi.php/tips-and-tricks/autosize-dbgrid/#comment-1503 tmj Mon, 22 Dec 2008 22:59:29 +0000 http://exampledelphi.com/delphi.php/tips-and-tricks/autosize-dbgrid/#comment-1503 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. 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.

]]>
By: tmj http://exampledelphi.com/delphi.php/tips-and-tricks/autosize-dbgrid/#comment-1502 tmj Mon, 22 Dec 2008 21:43:26 +0000 http://exampledelphi.com/delphi.php/tips-and-tricks/autosize-dbgrid/#comment-1502 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. 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.

]]>