Can anyone tell me how to change the font in a combobox? Thanks in advance.
Printable View
Can anyone tell me how to change the font in a combobox? Thanks in advance.
Combo1.Font = "Times new Roman"
Combo1.FontSize = 18
Combo1.FontBold = true
' etc.
John G
The combo has a font property. You can can this at design time or at run time by code
Combo1.Font = "New Times Roman"
David Paulson