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?
Printable View
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?
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