You could always manipulate the DataGridView.CurrentCell property upon pressing of the Tab key, something like :
Of course, this assumes you already determined that Tab was pressed.Code:DataGridView1.CurrentCell = DataGridView1.Item(column, row)
But why is this necessary ¿




Reply With Quote