Problem with DataGridView setting CurrentCell
I am having Winform VS2005 (VB.NET) Application, I have a DataGridView with following columns, ItemID, ItemName,Qty,Rate. What I want is after user enters some value in ItemID Column I want to set cell focus to Qty column.
I am using CellEndEdit Event for ItemID column to change the current cell location as DataGridView1.CurrentCell = DataGridView1(2, Row) but it does not go to 3rd column (it just goes to next column ItemName). Also the event is getting fired twice.
Any help on above is appreciated, Thanks in advance.

