Hi Jim,
There's a TabIndex property on the column.
Hi Mike,
Thanks for the response. I'm actually talking about a tab index at the cell level, not at the column level. I need the user to work their way down the fields in one column, then over to the next column. My original post has a good example of what I'm talking about.
Thanks!Jim Honeycutt
I'm not sure I see the distinction you are making. Are you saying that you want to tab across rows, not within the same row?
In that case, I recommend that you handle the BeforePerformAction method. You can trap for actions such as NextCellByTab and PrevCellByTab, cancel the action, and set the ActiveCell to whatever you want.
Perfect, that's exactly the info I needed!
Yes, I needed to tab down across rows and BeforePerformAction and NextCellByTab/PrevCellByTab give me exacly what I need.
Thank you!Jim Honeycutt