I have a DataGridView that is bound to a dataset. What I wish to do is when the grid is loaded...I want the last row to be the selected row. I also need to declare an instance of the row but not sure how to reference the last row.
This is what I have currently.
I need to have something like this:Code:Dim row As DataGridViewRow = grdStatus.CurrentRow
Thanks,Code:Dim row As DataGridViewRow = grdStatus.LastRow




Reply With Quote