Does anyone know how to load all the font names into a combobox???
Printable View
Does anyone know how to load all the font names into a combobox???
Set the Sorted property to True and...
You can also use the Printer object with the same properties.VB Code:
Dim i As Long For i = 0 To Screen.FontCount - 1 cboFonts.AddItem Screen.Fonts(i) Next i
Thanks filburt
ya, thanks filburt i needed it too :D
I feel so helpful. :D