essanaani
Messages postés1Date d'inscriptionmardi 1 mai 2007StatutMembreDernière intervention18 avril 2008
-
18 avril 2008 à 14:07
bigfish_le vrai
Messages postés1835Date d'inscriptionvendredi 13 mai 2005StatutMembreDernière intervention20 novembre 2013
-
18 avril 2008 à 17:48
bonjour, donc voila mon probleme
je voudrai modifier le Caption de ma ChekBox2 avec du code VBA mais quand j'utilise cette methode il m'affiche une erreur
juste parsque j'utilise .Caption
With ActiveSheet.Shapes("CheckBox2")
.Name = "Le nouveau nom"
.Caption = "Le nouveau Label"
.Left = 60
...
bigfish_le vrai
Messages postés1835Date d'inscriptionvendredi 13 mai 2005StatutMembreDernière intervention20 novembre 201314 18 avril 2008 à 17:48
Salut,
n'utilise pas Shapes
With ActiveSheet.CheckBox2
.Name = "Le nouveau nom" 'mais attention a cause de cette ligne ta macro ne marchera qu'une fois
.Caption = "Le nouveau Label"
.Left = 60
End With