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
805
Binding a UltraCombo to a set of strings
posted

What's the easiest, fastest simplest way to set up a UltraCombo with nothing more than a set of pre-defined strings? In this case I literally want a combo with three selections, "One", "Two" and "Three".

Parents
  • 469350
    Verified Answer
    Offline posted

    The UltraCombo controls requires a DataSource. So you would have to create a List<string> or use an UltraDataSource or something in order to do this with UltraCombo.

    If you are looking for something simpler, then you probably want to use UltraComboEditor instead. You can simply place this control on a form and add to the Items collection right in the designer.

Reply Children
No Data