Search Footer Hides Selection

Hello,

Have a AdvColumnGrid on a form and have the SearchFooter visible property set to true.

If I fill my grid with data, then scroll down to the second page of the grid and select a row.  I store this row value in my database.  Then I close my form and reopen it using my stored row as my Row property of my grid.  When the grid displays it shows my selected row as the last in the grid and it s behind the SearchFooter.

What do I have to do to get the row to show when I open the form?  How can I control where in the grid the selected row appears?

Thank you,
Chad


You can control the vertical scroll position in the grid programmatically with the property

grid.TopRow: integer;

Bruno,

Thank you.  That did it.

Chad