Click to See Complete Forum and Search --> : How do you change the font in a combobox?


Jill Gordon
May 26th, 2001, 02:01 PM
Can anyone tell me how to change the font in a combobox? Thanks in advance.

John G Duffy
May 26th, 2001, 04:10 PM
Combo1.Font = "Times new Roman"
Combo1.FontSize = 18
Combo1.FontBold = true
' etc.




John G

d.paulson
May 26th, 2001, 04:10 PM
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