Multi-line combo box??

  • Thread starter Thread starter Brian
  • Start date Start date
B

Brian

I have a combo box in which I need to display quite a bit of data. Is there
any way to force each selection in the combo box onto two lines?
 
Brian said:
I have a combo box in which I need to display quite a bit of data. Is
there
any way to force each selection in the combo box onto two lines?


No. You can use multiple columns in the combo box, of course, and have a
ListWidth wider than the witdth of the control itself. And you can have
other controls on your form that display additional information drawn from
the columns of the combo box for the currently selected item. You can even
fudge text box overlaid on the combo box, where the text box shows the
currently selected item on multiple lines. But you can't make one item of
the combo box be displayed on multiple lines *in the combo box*.
 
Back
Top