DataGrid control scrolling

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can I programmatically control the scrolling of DataGrid control in Windows
Forms. I have DataGrid control which shows hundred of rows. I want a way of
scrolling the data grid to last row

KDV
 
If you know what the index of the record you want to scroll to is... it is
this simple.


DataGrid1.CurrentRowIndex = 35
 
Thanks. This will solve my problem

KDV

Thor Kornbrek said:
If you know what the index of the record you want to scroll to is... it is
this simple.


DataGrid1.CurrentRowIndex = 35
 
Back
Top