vote up 1 vote down star

Is there a way to do this? I want to mimic the behavior of a the UltraTextBox.SelectAll method in windows forms.

flag

2 Answers

vote up 2 vote down check

You might want to provide the exact version of Infragistics Library...

Does

this.UltraCombo1.TextBox.SelectAll()

do what you want?

link|flag
vote up 0 vote down

I think your problem is that you have HideSelection set to true. If you set this to false then textBox1.SelectAll will function as you expect...alternatively you need to give focus to your textbox before calling SelectAll().

I'm not sure how SelectAll works for UltraTextBox but I presume it just selects all the text in the textbox.

link|flag
I have a comboBox not a textbox. I want to do a selectAll on the value in the comboBox--functionally like how the selectAll works on the TextBox. – Jeff Jan 29 at 19:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.