Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Removing Square Box in Checkbox
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01238034
Message ID:
01238044
Views:
9
>Is there a way to remove the square box from a checkbox? I need to display just the check mark.
>
>Jerry

No, but you could add a label and change its caption in Click event to empty or to Check mark symbol taken from Windings2 font:
In Click event:
IF this.Caption == CHR(80)
   this.Caption = CHR(163) && Empty sqare
ELSE
   this.Caption = CHR(80) && Check mark
ENDIF
Be sure you set Label FontName to [Wingdings 2]

I don't understand why you need that?
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Reply
Map
View

Click here to load this message in the networking platform