Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Install font with API
Message
From
10/03/1998 13:30:47
 
 
To
10/03/1998 13:21:04
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00083698
Message ID:
00083703
Views:
24
>Can anyone please show me some VFP5 code to install the foxfont.fon font programmatically using the API.
>
>I know it uses the AddFontResource function but I would love to see the solution if someone has it available.
>
>Thanks,

DECLARE INTEGER AddFontResource IN win32api STRING
LOCAL lc_font, ln_Return
*&& you will also have to include the path on foxfont.fon
lc_font = 'foxfont.fon' + CHR(0)
ln_return = AddFontResource(@lc_font)
IF ln_return = -1
=MESSAGEBOX('Font No Installed')
ENDIF

I think this is how it works, but I never tested it.

Charles
Charles

"The code knows no master." - Chuck Mautz
"Everybody is ignorant, only on different subjects." - Will Rogers
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform