I can do
DIM displayFont As New Font ("Times New Roman", 24, FontstyleBold, GraphicsUnit.Pixel)
and I get the desired result
If i do
DIM displayFont As New Font ("Michelangelo Normal", 24, FontstyleBold, GraphicsUnit.Pixel)
The text my function generates does not use the font. I recently added the Michelangelo font to windows. my question is, do I need to set that font up in VS first before I can use it in a variable? Or what can I do to get this to work.
thanks