Automatically unselecting text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
hamil said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top