Combo Box Font

F

Fadi Chalouhi

you can do it through the VBE editor :
- right click on the ComboBox
- in the properties box, select Font
- click on the "box with dots" that appears in the right-side of the
Font edit box.
- modify the font format there.

Alternatively, you can do this through VBA using
UserForm1.ComboBox1.Font.Size = ...

HTH

Fadi
www.chalouhis.com/XLBLOG
 
D

Debra Dalgleish

If it's a combobox from the Control toolbox, you can change the font
size by switching to Design view, opening the Properties window, and
changing the Font properties.

If it's a combobox from the Forms toolbar, you can't change the font size.
 
Top