combo boxes

M

mikeinohio

is ther a way to hide the arrow on a combobox when it does not have the focus?
 
R

Rick Brandt

mikeinohio said:
is ther a way to hide the arrow on a combobox when it does not have
the focus?

Only by covering it with a rectangle or by covering the entire ComboBox with a
TextBox bound to the same field that also covers the arrow. You can have the
TextBox NOT be in the TabOrder while the ComboBox is. When the user tabs into
the ComboBox it will move to the front and the arrow will be visible. To cover
the case where the user clicks on the TextBox you use its GotFocus event to move
focus to the ComboBox.
 

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

Top