Dave,
You can change the width of the combobox via its Size property, but you
cannot change the height of the combobox. The width depend on the font used
to print the items. The bigger the font, the taller the combobox.
If you want to have control over the combobox height you need to implement
owner-draw combobox. In this case you can set the ItemHeight property.
If you want change the width of the combobox depending on the lenght of the
text you can measure the text using a graphics object created from the
combobox control. You need to take into cosideration the pull-down button. I
believe it is related to the size of the scroll bart thus you can use
SystemInformation.VerticalScrollBarWidth.