How to move the Cell like excel using left right key, but only when the cursor position is at the first and the last in a cell.
I guess one thing you could do is trap the KeyUp event of the grid and then check the grid.ActiveCell.SelStart to see if the curos is in the first or last position. Then you could call PerformAction to move to the next or previous cell.