Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread DBISam Filtering Question
Tue, Jan 16 2007 11:16 AMPermanent Link

"Jonas Wik"
We are displayin what record number you are on out of the total record
number that you are on when you are scrolling through the DBISam Table.

lblRecordCount.Caption := 'Record ' + IntToStr( tblToUse.RecNo) + ' of ' +
IntToStr( tblToUse.RecordCount);

We were wondering if there was a way when you filter, if you can get the
current record number in the filtered list, for example, we would like it to
say record 50 out of 100 instead of 250 of 100 if the record number of the
unfiltered table is record 250.


Wed, Jan 17 2007 9:49 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Jonas,

<< We were wondering if there was a way when you filter, if you can get the
current record number in the filtered list, for example, we would like it to
say record 50 out of 100 instead of 250 of 100 if the record number of the
unfiltered table is record 250. >>

Unfortunately you cannot do so with DBISAM.  Logical record numbers are only
available with ranges or the complete table, not with filters.

--
Tim Young
Elevate Software
www.elevatesoft.com

Image