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".
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.
Ok, I did use a List, but was wondering if I was missing an even easier way.
I'll try the UltraComboEditor, that sounds perfect.