I have a C# winforms application and I am trying to get a button working that will select the next row in a datagridview after the one curently selected.
The code I
dgv_PhotoList.Rows[dgv_PhotoList.CurrentRow.Index+1].Selected = true;