How to List all Fonts on a system by VB usable name?

  • Thread starter Thread starter jack
  • Start date Start date
J

jack

Hello,

I need to be able to list all the fonts on a system in a way I can then use
the names to format my vb app. text.

Thanks for any help,

Jack
 
Hello,

jack said:
I need to be able to list all the fonts on a system in a way I can then use
the names to format my vb app. text.

\\\
Imports System.Drawing
..
..
..
Dim fntfam As FontFamily
For Each fntfam In FontFamily.Families
Console.WriteLine(fntfam.Name)
Next fntfam
///

HTH,
Herfried K. Wagner
 
Back
Top