Search found 38 matches: cfacename

Return to advanced search

Re: Fwh 23.10 TGet another problem

Dear Hakan, Please modify Class TFont line 243 this way: ::cFaceName = aInfo[ 4 ] and try it again many thanks I deleted the line I added and the error after making the change you mentioned Application===========   Path and name: C:\PrgW\Icra\IcraW.exe ...
by Horizon
Fri Nov 17, 2023 7:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 54316

Re: Fwh 23.10 TGet another problem

Dear Hakan,

Please modify Class TFont line 243 this way:

::cFaceName = aInfo[ 4 ]

and try it again

many thanks
by Antonio Linares
Fri Nov 17, 2023 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 54316

Re: Child OF oWnd

... {OBRUSH, {{HBRUSH, 9437200}, {HBITMAP, 0}, {HBMPORGL, 0}, {NCOUNT, 6}, {NRGBCOLOR, 16777215}, {LSYSTEM, .T.}, {USOURCE, CLR_WHITE}}}, {OFONT, {{CFACENAME, TAHOMA}, {HFONT, 1242174205}, {HFONTOLD, 0}, {LBOLD, .F.}, {LITALIC, .F.}, {LUNDERLINE, .F.}, {LSTRIKEOUT, .F.}, {NINPHEIGHT, -20}, {NINPWIDTH, ...
by Jimmy
Thu Nov 10, 2022 5:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Child OF oWnd
Replies: 7
Views: 344

Re: [BUG] in source/font.prg and a question

... start: 0 hours 0 mins 26 secs Error occurred at: 25.07.2019, 10:06:16 Error description: Error BASE/1004 Class: 'ARRAY' has no exported method: CFACENAME Args: [ 1] = A { ... } length: 14 Stack Calls =========== Called from: => CFACENAME( 0 ) Called from: .\source\classes\FONT.PRG => FONTTOTEXT( ...
by ukoenig
Thu Jul 25, 2019 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: [BUG] in source/font.prg and a question
Replies: 8
Views: 1019

Re: New FTDN June/Junio 2019 (FWH 19.06)

... "get" no se limpia cuando el "get" toma el foco por segunda vez y en adelante. Corregido. * TGRAPH: - New DATAs: DATA cFont // cFaceName Font Base DATA nHFont // nHeight Font DATA nPorcY INIT 4600 // For Print Image aspect DATA nPorcX INIT 4000 // For Print Image aspect - Modificado: ...
by Antonio Linares
Tue Jul 16, 2019 11:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2019 (FWH 19.06)
Replies: 4
Views: 2749

New FTDN June/Junio 2019 (FWH 19.06)

... * TGET: When using picture clause @K, get is not cleared when the get gets focus second time onwards. Fixed. * TGRAPH: - New DATAs: DATA cFont // cFaceName Font Base DATA nHFont // nHeight Font DATA nPorcY INIT 4600 // For Print Image aspect DATA nPorcX INIT 4000 // For Print Image aspect - Modified: ...
by Antonio Linares
Thu Jul 11, 2019 6:14 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2019 (FWH 19.06)
Replies: 4
Views: 2749

Re: DEFINE FONT vs TFont()

TFont():New( cFaceName, nWidth, nHeight, lFromUser, lBold,; nEscapement, nOrientation, nWeight, lItalic, lUnderline,; lStrikeOut, nCharSet, nOutPrecision, nClipPrecision,; nQuality, oDevice, nPitchFamily ) creates a font with exactly ...
by nageswaragunupudi
Tue Dec 19, 2017 7:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DEFINE FONT vs TFont()
Replies: 20
Views: 3331

Re: DEFINE FONT vs TFont()

WITH OBJECT oFont2: = TFont (): New () : cFaceName: = "Calibrí" : nWidth: = 0 : nHeight: = -12 END   This approach does not work. TFont():New() method should get all the parameters. Then only the New() method can create ...
by nageswaragunupudi
Fri Dec 15, 2017 3:54 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DEFINE FONT vs TFont()
Replies: 20
Views: 3331

Re: DEFINE FONT vs TFont()

... me vaya bien y me agrade mas. Por cierto oFont2 := TFont():New( "Calibrí", 0, -12,,,,,,,,,,,,,, ) WITH OBJECT oFont2 := TFont():New() :cFaceName := "Calibrí" :nWidth := 0 :nHeight := -12 END deberian de dar el mismo resultado final!!! Pues no, el segundo muestra en negrita. ...
by Xevi
Wed Dec 13, 2017 10:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DEFINE FONT vs TFont()
Replies: 20
Views: 3331

DEFINE FONT vs TFont()

... o falta de saber el como en lugar de DEFINE FONT oFont2 NAME 'Calibrí' SIZE 6, -13 puedo hacer WITH OBJECT oFont2 := TFont:New() :cFaceName := "Calibrí" :nSize := 12 END al compilar, me lanza el error Error description: Error BASE/1003 Variable does not exist: TFONT Supongo ...
by Xevi
Wed Dec 13, 2017 9:43 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DEFINE FONT vs TFont()
Replies: 20
Views: 3331

Re: xBrowse Font Problem

Yes you are right. It appears that the characters are shown correctly. Can you double click on xbrowse please. I want to see the oFont:cFaceName. If it is Segoe UI, I will check my windows settings. Temporarily I have solved my problem by changing GetSysFont() in getsysin.prg Thanks for your ...
by cnavarro
Thu Jan 05, 2017 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Font Problem
Replies: 14
Views: 3183

Re: xBrowse Font Problem

Yes you are right. It appears that the characters are shown correctly.
Can you double click on xbrowse please. I want to see the oFont:cFaceName.
If it is Segoe UI, I will check my windows settings.
Temporarily I have solved my problem by changing GetSysFont() in getsysin.prg
Thanks for your help.
by betoncu
Thu Jan 05, 2017 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Font Problem
Replies: 14
Views: 3183

Re: Decidir si Font es Bold o no

... oFont:lItalic, oFont:nHeight ) que fácilmente podrías modificar para crear otra con las mismas características que la actual pero con otro cFaceName, añadiendo un parámetro más Otra posibilidad, es hacer después ( que no he probado ), para intentar seguir usando el mismo oFont oFont:hFont ...
by cnavarro
Fri Dec 02, 2016 9:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Decidir si Font es Bold o no
Replies: 9
Views: 1633

Re: Default font under Win 8 and 10

... being used. lDestroy becomes true to know when the font has to be destroyed finally. You can check the used font doing this: MsgInfo( oWnd:oFont:cFaceName ) the same works for dialogs and controls too
by Antonio Linares
Sun Aug 14, 2016 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Default font under Win 8 and 10
Replies: 11
Views: 3473

Re: size of a resource

Frank,

Try this:

DEFINE DIALOG oDlg RESOURCE ...

ACTIVATE DIALOG oDlg ON INIT ( MsgInfo( oDlg:oFont:cFaceName, oDlg:oFont:nSize ), oDlg:End() )
by Antonio Linares
Tue Aug 25, 2015 7:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: size of a resource
Replies: 2
Views: 624
Next

Return to advanced search