Scrolling DataGridView ( window forms)

  • Thread starter Thread starter Mel
  • Start date Start date
M

Mel

Hi,
When opening a form with a datagridview, I would like the grid to scroll
to the last row. If the row is visible there is no problem. The grid has a
binding source which is bound to a bindinglist<T>. I then set the binding
source position to the last item of the list, but the grid does not scroll
to the bottom. Looking for ideas!


Mel
 
Unfortunately that didn't make the grid scroll, but it did select that row
transactionCollectionDataGridView.CurrentCell =
transactionCollectionDataGridView.Rows[15].Cells[0];
 
Back
Top