Hi Pacem,
Based on my understanding, you want to copy the ListBox selected item text into system clipboard. Before you do that, you want to select next item in the ListBox. If I understand it correct, I think you can use this way
listBox1.SelectedIndex = listBox1.SelectedIndex + 1;
Clipboard.SetText(listBox1.SelectedItem.ToString());
Hope this helps. If I misunderstood something, please feel free to tell me.
Sincerely,
Kira Qian
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the
All-In-One Code Framework!