just asking on how to delete the current row in a Listview? kindly help me what the right code please?
Printable View
just asking on how to delete the current row in a Listview? kindly help me what the right code please?
Look this thread:
http://www.vbforums.com/showthread.p...hreadid=294765
Actually, this question has been asked in several threads, and tho I don't know the threadID's to any of them, the one that was offered doesn't really do a good job of answering the question.
This line of code will do the trick:
VB Code:
Me.ListView1.Items.Remove(Me.ListView1.SelectedItems(0))