![]() |
Delphi-Version: 11 Alexandria
Load external font
Delphi-Quellcode:
And a bit longer function for loading from resource.
function LoadResourceFont(const AFileName: string): Boolean;
begin Result := AddFontResourceW(PWideChar(AFileName)) <> 0; if Result then SendMessage(HWND_BROADCAST, WM_FONTCHANGE, 0, 0) ; end; I see that SendMessage freezes program. Without it not only not freezes app, but also font is loaded properly to controls :o Initially I created functions in D7 and used it on XP-7. Last I used it on D10.2 on 7, now after years in D11.2 also on 7, but now I see it not working as expacted (also in D7/XE2 test app). What to do? |
AW: Load external font
HWND_BROADCAST is never sent with SendMessage, but with PostMessage.
Because otherwise there can be such problems if any application does not respond properly. Alternatively SendNotifyMessage or SendMessageTimeout. Why broadcast to ALL running applications in the system if you only temporarily install the font in your application? SendMessage to Application.Handle Zitat:
Delphi-Quellcode:
or
function LoadResourceFont(const AFileName: WideString): Boolean; // or UnicodeString
begin Result := AddFontResourceW(PWideChar(AFileName)) <> 0;
Delphi-Quellcode:
function LoadResourceFont(const AFileName: string): Boolean;
begin Result := AddFontResource(PChar(AFileName)) <> 0; |
Re: Load external font
Thank you, now working correctly! :-D
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 18:31 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz