Khaleel R
Khaleel R

Reputation: 47

Setting Tab order in datagridview

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:

enter image description here

Upvotes: 0

Views: 339

Answers (1)

Aman B
Aman B

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

Related Questions