The idea is, there is a Main ComboBox, each with a client of 4 different cities, I wanted to select a client in the ComboBox, push the button and remove from that ComboBox and insert in the corresponding city of it.
In short: I want to take an item, remove it and put it in the pre-selected ComboBox.
I tried using IF, since each ComboBox starts with 0, but when adding in the ComboBox, it returns a value that contains something inside it, but does not show any text. (Example of what I tried)
if (cboClientes.SelectedIndex == 0 || cboClientes.SelectedIndex == 2 || cboClientes.SelectedIndex == 3 ||
{
cboVarginha.Items.Add(cboClientes.SelectedIndex);
cboClientes.Items.RemoveAt(cboClientes.SelectedIndex);
}