Non True-Type Fonts in VB.NET ???

OsirisGothra

Member
Joined
May 29, 2003
Messages
10
Location
Denver
Does anyone know a good way to create a non true type font (like Terminal) in VB.NET? Perhaps avoiding the dreaded API call..
and if not, with the API call?


:eek:
 
The GDI+ doesnt support non TrueType fonts, AFAIK, so much of .NETs internal drawing couldnt handle it.

If youre using a RichTextBox you should look into the EM_SETCHARFORMAT SendMessage message, or alternatively, the RichText format codes (you can manually set the font with those). Other than that, I dont know of any easy way to set the font to anything other than TTF.
 
Back
Top