How to automatic highlight all the rows using TDBGrid?

Newbie Member
7Oct2010,13:46   #1
davidgwillis's Avatar
Hi,

I had been trying to figure out for more than 2 weeks for the answer in
this website or others, but just couldn't find any sulution to solve my problem.

I had around over 1000 records which mean 1000 rows displayed in the TDBGrid. I had a button for Select All and when the user click on it, it will
automatic highligth all the records for me. I did manage to highlight some
reocords but it stop at invalid row number 19. I believe reason why it stop
or fail on row number 19 is because that were the visiable row?

Visual Baisc Code

For i = 0 To 1000
TDBGrid1.SelBookmarks.Add TDBGrid1.RowBookmark(i)
Next i

or

TDBGrid1.MoveFirst
For i = 0 to MaxRows
TDBGrid1.SelBookmarks.Add TDBGrid1.RowBookmark(i)
TDBGrid1.MoveNext
Next i

Does anyone can help me with this?

Thanks

David
Pro contributor
9Oct2010,04:14   #2
virxen's Avatar
send your project and what is necessary to compile and run
in a zip file
Newbie Member
9Oct2010,06:54   #3
davidgwillis's Avatar
Thank virxen.... I just fix the problem. Instead of using the RowBookmark since is only useful for the visible row, I use GetBookMark and it work.