I have a datagrid/gridview. I\'m populating the grid with 10 rows initially. On a button click every time,I\'m keeping on adding 10 rows to the datagrid/gridview. Now I want
Try this...
DataGridViewRow rowToSelect = this.dgvJobList.CurrentRow; rowToSelect.Selected = true; rowToSelect.Cells[0].Selected = true; this.dgvJobList.CurrentCell = rowToSelect.Cells[0]; this.dgvJobList.BeginEdit(true);