P
Peter Lux
I'm looking to get a list of the font names ALPHABETICALLY, instead of the
order in which they were installed. For example:
i = FontNames.Count()
n = 1
While n <= i
Selection.Font.Name = FontNames(n)
Selection.Font.Size = 12
Selection.TypeText FontNames(n) & Str(n) & "Jackdaws love my big
sphinx of quartz !_-*()" & vbCr
n = n + 1
Wend
FontNames gathers all the fonts, but doesn't do it in Alphabetical order.
Does anyone know how to get that?
order in which they were installed. For example:
i = FontNames.Count()
n = 1
While n <= i
Selection.Font.Name = FontNames(n)
Selection.Font.Size = 12
Selection.TypeText FontNames(n) & Str(n) & "Jackdaws love my big
sphinx of quartz !_-*()" & vbCr
n = n + 1
Wend
FontNames gathers all the fonts, but doesn't do it in Alphabetical order.
Does anyone know how to get that?