Hi,
Have a treeview control and can change the selected node to a (system installed truetype) font like this
Code:
trvFonts.SelectedNode.NodeFont = New System.Drawing.Font("Times", intNodeFontSize)
'FOLLOWING REQUIRED FOR BUG (LARGER TEXT IN NODE WILL CROP WITHOUT THIS)
trvFonts.SelectedNode.Text &= String.Empty
Is there any way (anyone know of a way) that i can use a postcript font (pfb/pfm) from a file (not installed), or even an installed postcript font to use in my treeview or any windows forms control?
Thanks for anyhelp with this
Regards