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

    How to create an editable subitem for a listview

    How do you create an editing subitem like the first column in a listview? I can find articles to do this in VC++ but not VB any ideas?

    Hope this helps

  2. #2
    Join Date
    Apr 2000
    Location
    South Carolina,USA
    Posts
    2,210

    Re: How to create an editable subitem for a listview

    ListView control is a readonly control and is not editable at Run time. The best you can do is superimpose a Textbox over the Row and Col you wish to edit and copy the users keystrokes into the Listview. There are examples of how to do this at
    http://www.planet-source-code.com/vb...t=Alphabetical
    '
    You might also search on DataGrid Edit of MSFlexGrid Edit for more samples on Http://www.Planet-Source_code.com/vb

    John G

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