Need Combo box 2 Look Like Text Box

juniorc

New member
Local time
Yesterday, 20:14
Joined
Aug 25, 2011
Messages
9
Can I format a Combo Box to look like a Text box on a form i.e without drop down buttons for selecting lookup values.
 
Hide the combo box and set the Control Source of the textbox to the Column of the combo box:

Code:
=ListboxName.Column([COLOR=red]x[/COLOR])
where x is the column number, i.e. 0 for the first column, 1 for the second column... and so on.
 
I've always place a small rectangle box over the arrow part and made it Transparent
 
I've always place a small rectangle box over the arrow part and made it Transparent
Yep, it's a nice idea but if my cursor is in the Combo box and I use these key combinations, Alt + Down arrow key, the box will drop-down.
 

Users who are viewing this thread

Back
Top Bottom