|
-
Jun 13th, 2002, 09:42 PM
#1
Thread Starter
New Member
Can a listview handle > 32,726 records?
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?
-
Jun 15th, 2002, 12:01 PM
#2
PowerPoster
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
-
Jun 15th, 2002, 01:05 PM
#3
PowerPoster
Well
Why not code just to show say 500 records and have buttons to go to next, previous, similiar to a web page?
Remaining quiet down here !!!
BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....
-
Jun 15th, 2002, 01:41 PM
#4
Or, create a test app, loop through 33000+ times adding fictional data to it and see if it crashes...
-
Jun 15th, 2002, 04:51 PM
#5
Hyperactive Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|