Using Fonts Without Installing
Using Fonts Without Installing
API Declarations
Declare Function RemoveFontResource Lib "gdi32" Alias "RemoveFontResourceA" (ByVal lpFileName As String) As Long
Rate Using Fonts Without Installing
(1(1 Vote))
'you will be able to use it also in other programs
'until You restart the machine or remove the font
Dim lFont As Long
lFont = AddFontResource("c:\somefont.ttf")
'if You want to remove font
Dim lFont As Long
lFont = RemoveFontResource("c:\somefont.ttf")
Using Fonts Without Installing Comments
No comments yet — be the first to post one!
Post a Comment