Combo box

  • Thread starter Thread starter Marwan Kharboutli
  • Start date Start date
M

Marwan Kharboutli

Hello,

I have two questions on combo boxes:

1) Can you make more than one selection from a combo box?
If I tried to select two entries from the list, the second
selection would delete the first. Is there a way to
overcome that?

1) In a multiple-column combo box, I want values from
column #2 be selected but I am getting column #1 selected
instead even though I have set the BoundColumn property
to "2". Can you help?

Thanks

Marwan S. Kharboutli
 
Combo boxes are single-select. If you need to select more than one entry,
your only choice is to use a list box.

For your second question, are you talking about what shows in the box when
the combo box isn't expanded, or are you talking about when you refer to the
combo box in code?
 
Back
Top