To get more information about a specific font family, just create a Font object by providing the family name.
In this example we fill a ReadOnly ComboBox with a list of installed Fonts when a form opens.
PUBLIC SUB Form_Open() DIM fontName AS String ComboBoxFonts.Clear() ComboBoxFonts.ReadOnly = TRUE ' Fill ReadOnly ComboBox with a list of installed fonts FOR EACH fontName IN Fonts ComboBoxFonts.Add(fontName) NEXT END