Question Editable ListView

jokerxp888

New member
Joined
Jul 6, 2010
Messages
2
Programming Experience
1-3
Hi,
Do anyone know how to do editable listview.

Means when i click on row1 col2, it can let me change the text inside?

Any sample code?

Tq
 
That's not how the ListView works. You can set a property to allow you to edit the first column but that's all. You should be using a DataGridView rather than a ListView if you want to edit in-place. The alternative is to use a dialogue to display a single record from the ListView in TexztBoxes or the like.
 
Back
Top