Can a listview handle > 32,726 records? Are there any advanced listviews, with improved capabilities? If not, what control would, that would have the same functionality as a listview?
Printable View
Can a listview handle > 32,726 records? Are there any advanced listviews, with improved capabilities? If not, what control would, that would have the same functionality as a listview?
No sure but you can try a demo from vbvision that supports a lot more listview items using a virtual listview (the listview control is the same):
http://www.mvps.org/vbvision/_sample...tView_Demo.zip
Why not code just to show say 500 records and have buttons to go to next, previous, similiar to a web page?
Or, create a test app, loop through 33000+ times adding fictional data to it and see if it crashes...
Just tried 40000 with no problems. I don't think there's any reason for it to have a limit beyond how much it would take to lock up your pc which I assume would be quite a large number.
ListView1.Columns.Add("Main", 50, HorizontalAlignment.Left)
ListView1.View = View.Details
For x = 1 To 40000
ListView1.Items.Add("New Item" & x)
Next