Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Removing Square Box in Checkbox
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
01238034
Message ID:
01238044
Vues:
8
>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.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform