Georg, it's not possible (as far as I know) to cause the table to scroll to a given position. You can, however, cause a cell on the last row to become the selected cell. I've observed that this has basically the effect that you're looking for.
Code:
table1.SelectCell( table1.ColName(0), table1.RowCount - 1 )
Gary