I\'m trying to scroll to bottom of a DataGridView in a C# WinForm.
This code works with a TextBox:
textbox_txt.SelectionStart = textbox_txt.Text.Leng
To scroll to bottom of DataGridView try this.
DataGridView
dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.RowCount-1;