Basically you need to know which row it is and then set the
Code:
.Row
property accordingly.
Code:
MSFlexGrid1.Row = 4
If the fourth row received the lase record. You need to factor in any fixed rows, as they will not contain a record, as well. Remember that the grid rows start at zero (0). If you add one row for eacg record then you can use the last row like this,
Code:
MSFlexGrid1.Row = MSFlexGrid1.Rows - 1
Take Care,
zemp
"If the grass looks greener... it's probably because there is more manure."
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.