I have a krypton combo box which I data bind with a list of key-value pairs. What's happening is that when i set the selected item in code, it is highlighting the text. How can i prevent this or deselect the text?

I've tried

// 1
combo.Select(0,0);
// 2
combo.Focus();
anotherControl.Focus();
// 3
combo.SelectionStart = 0;
combo.SelectionLength = combo.Text.Length;
// 4 
combo.SelectionStart = combo.Text.Length;
combo.SelectionLength = 0;

Nothing wants to work. Any help appreciated.

link|improve this question

78% accept rate
feedback

2 Answers

Try out

combo.SelectedText = String.Empty();

Regarding focus: (MSDN)

When the combo box loses focus, the selection point moves to the beginning of the text and any selected text becomes unselected

So strange why does not work following:

anotherControl.Focus(); 
link|improve this answer
Thanks, but didn't work – MattBH Oct 27 '11 at 13:40
it's weird when i click on it after its loaded and then click on something else then that focus thing works!??! it's driving me nuts – MattBH Oct 27 '11 at 13:42
does your combobox is bound to some data source? If yes, try SelectedIndex = -1 – sll Oct 27 '11 at 13:48
it is bound, but i then choose an item from the list. It's basically a form that's being prepopulated from a db, so i need to select the correct item. – MattBH Oct 27 '11 at 13:52
feedback

Not sure what you might be doing in the background ie fired events etc. However in the combox selectedindexchanged event you can add anotherControl.Select().

That should:)

link|improve this answer
No didn't work. – MattBH Oct 27 '11 at 14:04
feedback

Your Answer

 
or
required, but never shown

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