Home All Groups Group Topic Archive Search About

Automatically unselecting text

Author
11 Jan 2006 8:11 PM
hamil
I have a filled combo box.  After making a selection, the test stays in the
"selected" color, in my case blue. Is there a way to automatically "unselect"
the combo box after a selection is made? This action also applies to text
boxes as I recall. Basically, I don't want my form to have the blue box on
the screen afer I make a selection.

Thanks
Hamil.

Author
12 Jan 2006 2:32 AM
tomb
hamil wrote:

>I have a filled combo box.  After making a selection, the test stays in the
>"selected" color, in my case blue. Is there a way to automatically "unselect"
>the combo box after a selection is made? This action also applies to text
>boxes as I recall. Basically, I don't want my form to have the blue box on
>the screen afer I make a selection.
>
>Thanks
>Hamil.
>

>
In SelectedIndexChanged,  cmb.SelectionLength = 0

Tom