combo box

J

jemkennie

I need a combo box that displays 2 column, which I have created. When
the user clicks on the combo box, it displays the 2 column just fine.
When the use makes a selection, I want text from the 2nd column only
to appear in the combo box. I have set bound column to 2, but only
the text from the 1st column is appearing in the combo box. Any
help? Thank you
 
R

Rick Brandt

I need a combo box that displays 2 column, which I have created. When
the user clicks on the combo box, it displays the 2 column just fine.
When the use makes a selection, I want text from the 2nd column only
to appear in the combo box. I have set bound column to 2, but only
the text from the 1st column is appearing in the combo box. Any
help? Thank you

The bound column determines which column's value is picked up by the
control, not which column you see after making a choice. What is displayed
is always the left-most column with a width greater than zero.
 
Top