Jan 25, 2008 #1 steve728 Programmer Joined Mar 16, 2003 Messages 536 Location US Will someone please provide me a sample of code that will show me how to loop through multiple row selections made within a listview? Thanks in advance, Steve728
Will someone please provide me a sample of code that will show me how to loop through multiple row selections made within a listview? Thanks in advance, Steve728
Jan 25, 2008 1 #2 mansii Programmer Joined Oct 18, 2002 Messages 641 Location ID Code: For Each itm As ListViewItem in ListView1.SelectedItems MessageBox.Show(itm.Text) Next Upvote 0 Downvote