change the "height" of combobox

  • Thread starter Thread starter Thomas Wang
  • Start date Start date
T

Thomas Wang

I draw a combobox on a form, but I can not change its height,
What I can do about it?

B.Rgds
 
I think you can´t do very much - but I am not sure.
Perhaps the only way to do it is to write a custom combo box.
But I doubt that it is worth the effort...

Just make the other controls bigger ;-)
Sorry for this non-helping answer but I think you can´t do more!

Greetings,
timtos.
 
The height is governed by the size of the text.

Try:
<select size="1" name="LargeCombo" style="font-family: Arial; font-size:
18pt; font-weight: bold; width:300">
<option>Option1</option>
</select>

Hope this is what you wanted.
 
Back
Top