You really need to fasten up your rutines, fx. the Count table rows because it is a joke (sorry).
Sometimes I have around 9000 rows needed to be counted....
Why the %/"*! do you use a "for start to end then count row"
Just retrieve the RowCount from the grid or from the dataset: DBGrid1.DataSource.DataSet.RecordCount
If you realllllly want to use the "for start to end" rutine then don't update the screen while counting - this will make 2000% faster. :-)
Sometimes I have around 9000 rows needed to be counted....
Why the %/"*! do you use a "for start to end then count row"
Just retrieve the RowCount from the grid or from the dataset: DBGrid1.DataSource.DataSet.RecordCount
If you realllllly want to use the "for start to end" rutine then don't update the screen while counting - this will make 2000% faster. :-)
Comment