المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Retrieving multiple items from listview



C# Programming
04-03-2009, 03:42 PM
Hi
Can you please tel me how to retrieve multiple items from Listview?
If i use ListView.SelectedListViewItemCollection sl = this.listView1.SelectedItems;
lb4.Text = sl[0].Text;The item that is selected first from the listview should be displayed in the 1st label added to the TableLayoutPanel.The next selected item from listview should be displayed in the 2nd label added to the Table.Can you please help me with this?