views:

131

answers:

1

Is there a .NET WinForms grid that supports multiple scrollbars, by dividing the grid up into N parts, horizontal-wise, and having a scrollbar for each part?

Example:

|---- Part 1 ---|---- Part 2 ---|---- Part 3 ---|
| Col 1 | Col 2 | Col 1 | Col 2 | Col 1 | Col 2 |
|<****=========>|<****=========>|<****=========>|

Each of those parts have more columns, 3-6 for instance.

So does anyone know of such a grid? Without having to drop 3 grids on the form and using event handling to synchronize vertical scrolling and row height changes.

+1  A: 

Look at ComponentOne's TrueDBGrid. Their grid supports horizontal and vertical splits to do exactly what you intend. I believe the 10Tec's iGrid.NET has similar support.

Chris Porter
Thanks, I'll look at those
Lasse V. Karlsen