datagrid tabbing problem....

joshuayork

Member
Joined
Apr 21, 2008
Messages
8
Programming Experience
Beginner
I have hidden (column width = 0) columns on the right side of my datagrid, but tabbing does not work properly. How can I get tabbing to work?

Thanks....
 
You'll want to check out the CurrentCellChanged event.

From there you'll want to check if the dg.CurrentCell.ColumnIndex = HiddenColumnIndex. If this is true then set the CurrentCell to the first cell of the next row.
 
Back
Top