@sanjib65
hi sanjib65,
brilliant! now everything i select is copied to the other listbox, but its not a 'move' since the items in the original listbox are still there after the move.
so i modified the code as below but, all the items don't get removed! strange.
private void btnMoverr_Click(object sender, EventArgs e)
{
foreach (int i in lstBoxl.SelectedIndices)
{
lstBoxr.Items.Add(lstBoxl.Items[i].ToString());
lstBoxl.Items.Remove(lstBoxl.Items[i]);
}
}
Any ideas??
thanks so much for your help.