Checkbox FONTCOLOR
Posted: Thu Nov 21, 2019 4:43 am
hi,
i seems me that FONTCOLOR only work on Frame but not on FONT
i seems me that FONTCOLOR only work on Frame but not on FONT

Exclusive forum for HMG, a Free / Open Source xBase WIN32/64 Bits / GUI Development System
http://hmgforum.com/
Code: Select all
@ 110,200+50 CHECKBOX CHECK_3 ;
CAPTION "" ;
FIELD POP3->SSL ;
FONTCOLOR {76,254,254} ;
ON ENTER CheckValue() ;
ON CHANGE CheckCaption()
Code: Select all
PROCEDURE CheckCaption()
IF USED()
IF Win_Setup.CHECK_3.Value = .F.
Win_Setup.Check_3.Caption := "disable"
ELSE
Win_Setup.Check_3.Caption := "enable"
ENDIF
ENDIF
RETURN
Hi,
Hope that useful* Enhanced: The CHECKBOX, FRAME and RADIOGROUP controls supports the FontColor
and BackColor properties in the THEMED Operating Systems.
It was a postponed user's request.
Contributed by Grigory Filatov <gfilatov@inbox.ru>
(see demo in folder \samples\Basic\CheckLabel_2)