This code
CurrentSelectedRow = Me.dgvPreviouslyCut.CurrentRow.Index
stores the current selected row that has been clicked by the user in a data grid view control . After refreshing the datasource for the data grid view, this code
Me.dgvPreviouslyCut.Rows(CurrentSelectedRow).Selected = True
programmatically re-selects the same row.
Immediately afterwards though
Me.dgvPreviouslyCut.CurrentRow.Index
is always set to zero, NOT the variable CurrentSelectedRow as you would expect.
Why does programmatically setting the select row index not cause the property CurrentRow.Index to be set to the same?
CurrentRow
is the row containing the currently active cell. When you bind the DataGridView to an external data source, this property is reset to its default value which is the first cell in the first column.
SelectedRow
is the row which is currently selected/highlighted. It may be one or more rows depending on MultiSelect
property. To select a row you have to set its Selected
property to true.
By setting the row as selected you merely keeping it highlighted not making it active.
To retain the current cell you have to store the Current cell's row and column index. To get them use the CurrentCellAddress
property. Once your refresh the DataSource
set the CurrentCell property using these indexes.
dataGridView1.CurrentCell = dataGridView1.Rows(rowindex).Cells(columnindex);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With