Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
390
How to copy Items from one combo to another combo Editor
posted

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

 

Parents
No Data
Reply
  • 469350
    Suggested Answer
    Offline posted

    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.

     

Children
No Data