Displaying double lines of text in combo box?

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

Guest

I have a combo box 'returnscatagoryCbo' based on a query. The text selected
in the combo box is too long to display in the combo box.

Is there any way of getting a combo box to display 'double lines' of text
per entry and wrap the text down into the second line (or I could manually
change the text by crtl + return)

Any help always appreciated.
 
BusterB said:
I have a combo box 'returnscatagoryCbo' based on a query. The text selected
in the combo box is too long to display in the combo box.

Is there any way of getting a combo box to display 'double lines' of text
per entry and wrap the text down into the second line (or I could manually
change the text by crtl + return)

Nope. You could set up the ComboBox such that the data in the rows is on more
than one row, but you will never see anything but the first row in the list.

You might be able to simulate a ComboBox with a subform that could do this, but
it would be a lot of work.
 
Back
Top