I create a button on ribbonbar type SAYBUTTON
@ 7,5 ADD BUTTON oSelected ;
PROMPT " N."+str(ncella) ;
SIZE 100,85 ;
BITMAP cImagebar ;
OF oApp():oGrSelected MOSTLEFT SAYBUTTON
oSelected:DISABLE()
How I can to change the font of text ?
on include ( ribbon.ch) I cannot insert Font
How it is possible ?
add button on ribonbar with font
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
add button on ribonbar with font
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Re: add button on ribonbar with font
Silvio,
a sample :
regards
Uwe
a sample :
Code: Select all
@ 45, 100 ADD BUTTON oSay1 GROUP oGrS1 SIZE 200, 40 ;
PROMPT "A Say" SAYBUTTON ;
CENTER ROUND BORDER ACTION( MsgInfo( "Say Button" ) )
oSay1:SetFont( oFontBigNum )
regards
Uwe
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: add button on ribonbar with font
thanks
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC