i seems me that FONTCOLOR only work on Frame but not on FONT

Moderator: Rathinagiri
Hi,
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)