I want to mimic the behavior of the UltraTextBox.SelectAll method except in a combo box. Is there a way to do this?
Assuming that the control is in edit mode, you can do this:
this.ultraCombo1.Textbox.SelectAll()
Yes, that works. Thanks