Hi there.
I use the following code with a AdvStringGrid.
grid.ColCount := 5;
grid.Options := grid.Options + [goTabs];
grid.LinearFill();
grid.SuppressColumn(2);
This works as it should. Tab key skips the column 2
When I hide the last column(s), the tab key must be pressed (x) times. Depends on the amount of suppressed columns. The same applies to the arrow key. But only if the columns are at the end of the grid.
Is there a setting for this behavior?