CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2007
    Posts
    17

    Is there a way to get item from a ListView without actually selecting it

    Hey
    please can someone let me know that if there is a way to get an item from a column in ListView without actually selecting it.
    Thanks
    Ra

  2. #2

    Re: Is there a way to get item from a ListView without actually selecting it

    yes you can do this, if you know the row number, the column number or if you are searching a line according to the content of a reference cell:
    Code:
     listView1.Items[line].SubItems[column].Text
    David Domingues at [email protected]. Feel free to visit http://www.webrickco.com

  3. #3
    Join Date
    Jan 2007
    Posts
    17

    Re: Is there a way to get item from a ListView without actually selecting it

    Thanks

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