Navigate in pagemode := False

Hi,



How can I navigate in my dbgrid with pagemode := False?



I just want to use personal buttons :  first, preview, next, last.



Regards



Stéf

You can control the selected row (active record) with


grid.Row: integer property

So, moving to the next record would be:

grid.Row := grid.Row + 1

etc...

Thank you :)