
Signature
Bob Powell [MVP]
Visual C#, System.Drawing
Ramuseco Limited .NET consulting
http://www.ramuseco.com
Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm
Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm
All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
Thanks for your quick answer!
> To be honest I would advise you to either get a phenomenally good
> understanding of ListView or use a different control.
What I need is a fast list control which can show up to a million lines,
resize, reorder and hide columns and show an icon at the beginning of each
line. I don't need editing capabilities, subitems, groups.
Would you propose the Windows GridControl or a commercial ListControl (e.g.
Infragistics)?
Ulrich
Bob Powell [MVP] - 30 Mar 2008 23:24 GMT
The phrases "Fast control" and "million lines" are not ones that should be
in the same sentence.
Anyone who loads a control with a million lines of data or even uses a
virtual mode to select from that million lines is likely to be disappointed.
I work in a commercial bank where the number of transactions are huge and we
are constantly making trade-offs between performance and quantitiy of lines.
I have never seen a one-size-fits-all solution and we have used
Infragistics, standard Windows Forms, SyncFusion, Dundas, indeed all the
major players were evaluated extensively by our teams. I assure you I've
seen them all and I still can't instantly choose one just from simple
criteria.
Depending on the application we use the control best suited. We have no
financial constraints so all the tools we buy are purely there because they
fulfil a need. We have lots of them and they all apply well to different
tasks.
If you just want raw display of data, stick with a standard Microsoft
control. These are well thought out and fit well into the framework. If you
need pretty but can sacrifice some performance, go for Infragistics.

Signature
--
Bob Powell [MVP]
Visual C#, System.Drawing
Ramuseco Limited .NET consulting
http://www.ramuseco.com
Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm
Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm
All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
> Thanks for your quick answer!
>
[quoted text clipped - 10 lines]
>
> Ulrich