Set a length of a combo

M

Mark Goldin

Is it possible to preset a length of a combo box when it does not have any
items yet?

Thanks
 
M

MD WebsUnlimited.com

Hi Mark,

First, FP does not support a combo box. A combo box allows you to type into
the text area of the control.

If by length you mean the height of the drop down when the down arrow is
selected then I don't believe it does.
 
M

Mark

When Select does not have any items it is very narrow.
I'd like to have it as wide as it would be with some
items. Blanks are no good.
 
K

Kevin Spencer

You can use style to set the width regardless of the content:

<select name="mySelect" style="width:250px">
Whatever options you have
</select>

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big Things are made up of
Lots of Little Things.
 
Top