Word wrapping a combo box?

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

Guest

I want my users to be able to select from a list of workplace competencies.
Each of the competencies belongs to a specific competency set. The set names
can be shortened to something that easily fits in a normally sized combo box.
But the competencies necessarily need to be long enough to distinguish one
from another. This means that they would need more than one line of text
display. So is there a way to wrap text in a (multi-column) combo box?
Other suggestions?

Thanks.
 
Not as far as I'm aware. However, the default behaviour of a combo box
allows you to make the width of the list far wider than the combo box itself
so that they can see everything while they're making their choice. Is that
sufficient?
 
-----Original Message-----
I want my users to be able to select from a list of workplace competencies.
Each of the competencies belongs to a specific competency set. The set names
can be shortened to something that easily fits in a normally sized combo box.
But the competencies necessarily need to be long enough to distinguish one
from another. This means that they would need more than one line of text
display. So is there a way to wrap text in a (multi- column) combo box?
Other suggestions?

Thanks.
.

Hi, Douglas' suggestion will work when the a user is
selecting an item from the list. When the list is closed
use a label control or textbox to display the extended
information.

Use the after_update event of the combobox to put the
information in the competancies column into the second
control

lblCompetancy.caption=cbo.column(1)

Luck
Jonathan
 
Back
Top