Search found 4138 matches: font

Return to advanced search

Re: REDEFINE BUTTON with custom font

... thank you very much for your nice anwers. I am gradually beginning to understand a little bit and it is great fun. so thank you again :-) now the FONT for buttons is working wonderfully and i tried to give CHECKBOX the same font too which works also in a wonderful way. please could you help me ...
by Ruth
Fri Feb 02, 2024 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE BUTTON with custom font
Replies: 12
Views: 685

Re: REDEFINE BUTTON with custom font

... )oBot:SetFont(oFontBold)  O si no quieres definir cada boton como variable, en el init del dialogo, puedes asignar el font a todos los que sean del tipo boton ACTIVATE DIALOG oDlg CENTERED ;      VALID MsgYesNo( "Want to end ?" );  ...
by cmsoft
Thu Feb 01, 2024 8:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE BUTTON with custom font
Replies: 12
Views: 685

Re: REDEFINE BUTTON with custom font

Dear Ruth, I don't know this procedure.

Regards, saludos.
by karinha
Thu Feb 01, 2024 6:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE BUTTON with custom font
Replies: 12
Views: 685

Re: REDEFINE BUTTON with custom font

Dear Mr. Santos,

this is wonderful :-) Thank you very much!!!
one question please...
is there also a way to say ARRAY(..) without knowing in advance how many elements it will have?

again thank you and kind regards
Ruth
by Ruth
Thu Feb 01, 2024 6:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE BUTTON with custom font
Replies: 12
Views: 685

Re: REDEFINE BUTTON with custom font

STATIC oBtnsFUNCTION...   LOCAL IDBottons   oBtns    := ARRAY(12)   //-> SET FONT OF oBtns[01] TO oFont    //-> SET FONT OF oBtns[02] TO oFont    //-> SET FONT OF oBtns[03] TO oFont    //-> SET FONT ...
by karinha
Thu Feb 01, 2024 3:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE BUTTON with custom font
Replies: 12
Views: 685

REDEFINE BUTTON with custom font

Dear friends, I have a font local oFontBold         := TFont():New("Segoe Ui",,-18,,.T.,,,,.F.) and tie this to REDEFINE SAY oSay ID 4013 of oDlg FONT oFontBold ...working wonderfully. now i wonder... is it ...
by Ruth
Thu Feb 01, 2024 2:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE BUTTON with custom font
Replies: 12
Views: 685

Re: link between PRG and RC

... have to tell the *.prg where to go looking - a hint to *.rc? It is not needed as FiveWin automatically look for it inside the EXE > it says FONT 10, "Segoe UI" Simply change "Segoe UI" into othe font name as "Verdana", "Arial", etc. > please, where ...
by Antonio Linares
Tue Jan 30, 2024 7:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: link between PRG and RC
Replies: 20
Views: 1706

Re: link between PRG and RC

... you first link the file before you can use its styling opportunities? i am looking forward to starting ... i will "just" change the font first. it says FONT 10, "Segoe UI" please, where can i find all the usable fonts for my project? do i have to install them? if i then ...
by Ruth
Tue Jan 30, 2024 7:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: link between PRG and RC
Replies: 20
Views: 1706

Re: Creating table with Trichedit

... AFILL(aMarca,0) DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN CENTER ; // Center table horizontally on page FONTNUMBER 1 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 9 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text ...
by Silvio.Falconi
Mon Jan 29, 2024 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1457

Re: Creating table with Trichedit

... AFILL(aMarca,0) DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN CENTER ; // Center table horizontally on page FONTNUMBER 1 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 9 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text ...
by MMK
Mon Jan 29, 2024 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1457

Re: Creating table with Trichedit

... this to begin a new table DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN LEFT ; // Center table horizontally on page FONTNUMBER 2 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 10 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text ...
by Silvio.Falconi
Sun Jan 28, 2024 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1457

Re: Creating table with Trichedit

... this to begin a new table DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN LEFT ; // Center table horizontally on page FONTNUMBER 2 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 10 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text ...
by Silvio.Falconi
Sat Jan 27, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1457

Re: Creating table with Trichedit

... this to begin a new table DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN LEFT ; // Center table horizontally on page FONTNUMBER 2 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 10 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text ...
by MMK
Sat Jan 27, 2024 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1457

Re: Problem with tget numeric

perhaps

@ 70, 20 GET aGet[1] VAR nTop OF oDlg SIZE 40, 14 PIXEL FONT oFont ;
PICTURE "@ ###,99" UPDATE RIGHT



Image
by Silvio.Falconi
Wed Jan 17, 2024 8:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1433

Re: Problem with tget numeric

... must put up to two numbers after the decimal point and then move on to the other get type @ 70, 20 GET aGet[1] VAR nTop OF oDlg SIZE 28, 12 PIXEL FONT oFont ; picture "@Z 99.99" UPDATE RIGHTTOLEFT If I press 1 , 2 3 I must have on get "1,23" then the user must pree tab to jump ...
by Silvio.Falconi
Wed Jan 17, 2024 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1433
PreviousNext

Return to advanced search