How can I change what happens when "enter" key is pressed on a DataGridView?

Posted by SO give me back my rep on Stack Overflow See other posts from Stack Overflow or by SO give me back my rep
Published on 2010-03-26T23:10:42Z Indexed on 2010/03/26 23:13 UTC
Read the original article Hit count: 253

Filed under:
|

when I am editing a cell and press enter the next row is automatically selected, I want to stay with the current row... I want to happen nothing except the EndEdit.

I have this:

private void dtgProductos_CellEndEdit(object sender, DataGridViewCellEventArgs e)
        {
            dtgProductos[e.ColumnIndex, e.RowIndex].Selected = true; //this line is not working
            var index = dtgProductos.SelectedRows[0].Cells.IndexOf(dtgProductos.SelectedRows[0].Cells[e.ColumnIndex]);
            switch (index)
            {
                case 2:
                    {
                        dtgProductos.SelectedRows[0].Cells[4].Selected = true;
                        dtgProductos.BeginEdit(true);
                    }
                    break;
                case 4:
                    {
                        dtgProductos.SelectedRows[0].Cells[5].Selected = true;
                        dtgProductos.BeginEdit(true);
                    }
                    break;
                case 5:
                    {
                        btnAddProduct.Focus();
                    }
                    break;
                default:
                    break;
            }
        }

so when I edit a row that is not the last one I get this error:

Operation is not valid because it results in a reentrant call to the SetCurrentCellAddressCore function.

© Stack Overflow or respective owner

Related posts about c#

Related posts about winforms