Results 1 to 5 of 5

Thread: Can a listview handle > 32,726 records?

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2002
    Posts
    11

    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?

  2. #2
    PowerPoster abdul's Avatar
    Join Date
    Dec 2000
    Location
    Ontario,Canada
    Posts
    2,827
    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
    Baaaaaaaaah

  3. #3
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    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....

  4. #4
    hellswraith
    Guest
    Or, create a test app, loop through 33000+ times adding fictional data to it and see if it crashes...

  5. #5
    Hyperactive Member
    Join Date
    Dec 2001
    Location
    Dublin, Ireland
    Posts
    262
    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
  •  



Click Here to Expand Forum to Full Width