E Evan Camilleri Apr 17, 2006 #1 The Multiselect list (which was available in eVB) is now removed? Evan
S Sergey Bogdanov Apr 17, 2006 #2 You may use listview with checkboxes instead. Then you can iterate through selected items in this way: foreach(ListViewItem item in yourListView.Items) if (item.Checked) { ... }
You may use listview with checkboxes instead. Then you can iterate through selected items in this way: foreach(ListViewItem item in yourListView.Items) if (item.Checked) { ... }
D Daniel Moth Apr 20, 2006 #3 http://groups.google.com/group/micr...read/thread/fa81ebaf34e9db41/5e17794bb3e6e033 Cheers Daniel