vote up 0 vote down star

Or is there any better suited 3rd party control for this purpose?

flag

12  
you expect >65,535 columns to be human readable? – annakata Jul 1 at 12:49
2  
I really find it hard to think of some valid reason to do so... – Hemant Jul 1 at 12:51
6  
I would take a look at the design of the application rather than searching for a data grid view which supports that... – fretje Jul 1 at 12:53
1  
The answer is you dont! – leppie Jul 1 at 12:56
3  
If you're displaying a mesh, you might want to use a graphics library instead....grids are slow. I can't imagine how bad a grid with 65k+ columns would be. – Michael Haren Jul 1 at 13:05
show 3 more comments

4 Answers

vote up 9 vote down check

I know that DevExpress XtraGrid supports, in theory, Int32.MaxValue rows or columns in the grid. In this case, the limit is the system memory not the grid.

But do you really need to display so much data?

link|flag
2  
+1 for third party option and raising question as why – curtisk Jul 1 at 12:58
vote up 1 vote down

Short answer: Dont do it!

Long answer: Change the FillWeight to 10 or less (default is 100). The limit you are reaching is due to the total FillWeight exceeding 64K x 100 (who knows why that is a limit).

link|flag
1  
Well, if you keep the default FillWeight, then the column limit is about 655, because ColumnCount x FillWeight < 65535! So, even if you change the FillWeight to minimum, which is 1, the maximum number of columns will be 65,535. – nullDev Jul 2 at 7:13
Ahh, I seemed to forgot! Thanks – leppie Jul 2 at 10:38
vote up 2 vote down

Use a virtual list (loads only the rows that are visible). I'm not sure that WinForms ListView has a virtual mode but the WPF one does.

So create a WPF user control and set it up for VirtualMode = True and host that user control on your WinForms client with an ElementHost container.

Sorry I can't be more specific, I don't have the code to hand.

Ryan

link|flag
vote up 0 vote down

Xceed's DataGrid for WPF can do this easily and uses both column and UI virtualization. Check out their live demo. You can populate the demo with as many columns and rows needed to test perf. http://xceed.com/Grid_WPF_Demo.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.