I have Two ultracombobox,
In one combo there are 10 manually added items.
I want to copy all items from one combo to another combo
i tried
ultraComboEditor2 = ultraComboEditor1;
but ultraComboEditor2 doesn't get result.
how it is posible
Hi,
The code you have here just sets one member variable to another.
If you are using UltraCombo, then you can't add items to the combo manually. The Combo requires a DataSource. So you could set the DataSource of the second combo to the DataSource of the first and then they will both have the same items.