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.

Code:
         Dim row As DataGridViewRow = grdStatus.CurrentRow
I need to have something like this:

Code:
         Dim row As DataGridViewRow = grdStatus.LastRow
Thanks,