Combo Box drop down widths

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

Guest

I have a form that uses a combo box. It retreives 5 sets of data and
populates 5 fields. The main combo box has a width set to 4cm, this is all i
need for this field. What i would like to know is when you drop down the
combobox, can you have that width set to say 10cm, so that i can confirm that
the all correct data is being selected, I dont want to have the main combobox
width any wider than the 4cm selected, as it will look crap on the form
 
Kevin said:
I have a form that uses a combo box. It retreives 5 sets of data and
populates 5 fields. The main combo box has a width set to 4cm, this
is all i need for this field. What i would like to know is when you
drop down the combobox, can you have that width set to say 10cm, so
that i can confirm that the all correct data is being selected, I
dont want to have the main combobox width any wider than the 4cm
selected, as it will look crap on the form

The ComboBox has three properties specific to your question:

Width
ListWidth
ColumnWidths

The second two are what you need to experiment with.
 
Back
Top