Reputation: 47
I have a datagridview for sales entry where their are itemcode, itemname, barcode ect after typing the item code or itemname or barcode the next tab should go to quantity and then without going to the next coloumn next row should be added
My datagridview image:
Upvotes: 0
Views: 339
Reputation: 2398
You can handle it using key press events. You can implement your condition by checking the current cell in datagridview dataGridView.CurrentCell
.
see How do I change the tab order in a DataGridView?
Upvotes: 1