CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 1999
    Location
    USA
    Posts
    101

    Q about list view control

    Does anyone have any idea about how a list view control works for 50000 records? I have an access database with 6 fields. Is there any alternative for list view contol?

    Thanks


  2. #2
    Join Date
    Jan 2000
    Location
    MO, USA
    Posts
    1,506

    Re: Q about list view control

    The listview control that comes with VB6 is pretty slow with that many records. If you want something a little faster, I would suggest using a grid and making it read only. You can populate the grid cell by cell using the TextMatrix property to navigate through the collection. (using the FlexGrid).

    Good luck,
    John

    John Pirkey
    MCSD
    www.ShallowWaterSystems.com
    John Pirkey
    MCSD (VB6)
    http://www.stlvbug.org

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

Featured