How to move the cursor in a DataGridView?
No. .Selected = true;
as this puts the cell in blue by default!
I want the cursor to move
When I click on "Add" button, I want the cursor moves to the last row and last column
i use :
this.dGridView.Rows[nbr].Cells[0].Selected = true;
this.dGridView.BeginEdit(true);
but it doesn't work
thanks for help