Jan 25, 2008 #1 steve728 Programmer Mar 16, 2003 536 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 Oct 18, 2002 641 ID Code: For Each itm As ListViewItem in ListView1.SelectedItems MessageBox.Show(itm.Text) Next Upvote 0 Downvote