Hello,
Is there a way in FWH to check if a font is installed or not?
If a font is not installed, how can I install it in FWH?
Thanks a lot in advance for any help.
Fonts
Fonts
Regards,
Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 21.01 - Harbour 3.2.0 (October 2020) - xHarbour Builder (January 2020) - Bcc7
Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 21.01 - Harbour 3.2.0 (October 2020) - xHarbour Builder (January 2020) - Bcc7
Re: Fonts
Michel,
I,m using.
I,m using.
Code: Select all
LOCAL hDc := GetDc(0)
LOCAL aFonts := GetFontNames(hDc)
LOCAL cFont := "Arial"
ReleaseDc(0, hDc)
IF ASCAN(aFonts, cFont ) <> 0
WinExec( "control fonts")
ENDIF