CHECKBOX - Cocher/Decocher
Rédigé par spheris
Aucun commentaire
Pour cocher / Décocher une checkbox, cela est possible avec deux solutions :
Utiliser la boucle IF THEN ELSE comme ceci dans l'évènement Click :
PUBLIC SUB checkbox1_click() IF checkbox1.value = FALSE THEN checkbox1.value = TRUE ELSE checkbox1.value = FALSE ENDif END |
L'inconvénient de cette boucle est que l'état TRISTATE ne peut être utilisé.
Voici la 2eme solution :
PUBLIC SUB checkbox1_click() select case checkbox1.value case FALSE checkbox1.value = TRUE case TRUE checkbox1.value = FALSE END select END |
Les 2 solutions conduisent au même résultat.
bon coding !