i want to listview editable it's possible??
please help
An ObjectListView will do exactly that and much more. It is a wrapper around a normal .NET ListView. It is open source.
Its website has a Getting Started to help you begin, as well as a whole page devoted to cell editing.
Otherwise I would stringly suggest you to use othe control, DataGridView, which is meant for this job. ListVIew is meant only for showing data, not for editing.
Hi TIPSynergy
I think this might help
Private Sub ListView1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ListView1.MouseDoubleClick
ListView1.SelectedItems(0).BeginEdit()
End Sub
Make sure that Listview1.labeledit property is set to true
Rgrds
Sam
thanks to both of you... it seems there no way to edit each listview cell..
for now i'm going to convert it to gridview... thanks guys...
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.