How do you delete a record from a listview control in the double click event??
Thanks in advance
Printable View
How do you delete a record from a listview control in the double click event??
Thanks in advance
Try this
ListView1.ListItems.Remove ListView1.SelectedItem.Key
that is assuming you supplied a key whan you populated the listview
John G