My font code will create "Signature" font but not "Script"? Is there a
True type font that looks like written words and not printed words?
Thanks,
Brent
True type font that looks like written words and not printed words?
Thanks,
Brent
'------------------------------------------------------------------------------- ' CHOOSE_FONT.BAS for PB/DLL 6.11 ' AUTHOR: Michael Mattias Racine WI ' Test ChooseFont Common DialogBox. ' Written: 6/23/02 ' WORKS TERRIFIC. Can add options with CfhookProc if I want to do something else. ' Like.. command line option "printer fonts, screen fonts, "printer & screen fonts" '------------------------------------------------------------------------------- #COMPILE EXE #DEBUG ERROR ON #REGISTER NONE #INCLUDE "WIN32API.INC" ' file date: 2/25/02 (PB version date). #INCLUDE "COMDLG32.INC" ' #RESOURCE "CHOOSE_FONT.PBR" NOT USED FUNCTION WINMAIN (BYVAL hInstance AS LONG, _ BYVAL hPrevInstance AS LONG, _ lpCmdLine AS ASCIIZ PTR, _ BYVAL iCmdShow AS LONG) AS LONG ' and the incredibly complicated code for what WinMain does: LOCAL cf AS choosefontapi ' comdlg32 cf.lstructSize = SIZEOF(cf) cf.flags = %CF_BOTH OR %CF_EFFECTS FUNCTION = ChooseFont(cf) FUNCTION = 5 END FUNCTION
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Comment