I have a DataGridView that I load in unbound mode. When first loaded the edit is set to I have a button where a user can "Add New"
Pressing this it will add a new row then I do
dgv.Rows[dgv.Rows.Count - 1].Selected = true;"
dgv.EditMode = DataGridViewEditMode.EditOnEnter;
However the caret focus is elsewhere.
I also would like the first cell to get the focus.
Any ideas?