CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2000
    Posts
    62

    Galen Nickerson's Virtual ListView Control

    How Do I Retrieve the Selected Lines in Galen Nickerson's Virtual ListView Control?

    The Equivalent of

    If ListView.ListItems(Index).Selected = True Then… would be Enough

    Danni.



  2. #2
    Join Date
    Jun 2000
    Posts
    62

    Re: Galen Nickerson's Virtual ListView Control

    Dim i As Long

    List1.Clear

    For i = 0 To 12

    If ListView_GetItemState(m_hWndLV, i, LVIS_SELECTED) = 2 Then List1.AddItem i

    Next i



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