Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
Here is an example to move multiple selected items from one listbox to another and remove added items (c#): // Set your listbox SelectionMode property to MultiExtended [icode] try{ foreach(string st in listbox1.SelectedItems) { listbox2.Items.Add(st); } // Remove the listbox2 added items from listbox1 for(int i=listbox1.Items.Count;i>0;i--) { listbox1.Items.RemoveAt(listbox1.SelectedIndex); } } …
The End.
vongkol