I need to force the DataGridView to show the selected row.
DataGridView
row
In short, I have a textbox that changes the DGV select
textbox
DGV
Just put that line after the selecting the row:
dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.SelectedRows[0].Index;