Variable dans boucle VBA Excel

Variable dans boucle VBA Excel - VB/VBA/VBS - Programmation

Marsh Posté le 25-01-2005 à 14:41:38    

Bonsoir,
 
Je cherche a faire une boucle pour rendre "Enable" ou "Disable" une liste de Checkbox.
Voici grosso modo ce que je voudrais faire mais qui ne fonctione pas
 
for i = 1 to 10
Checkbox(i).Enabled = False
next i
 
Merci de votre aide

Reply

Marsh Posté le 25-01-2005 à 14:41:38   

Reply

Marsh Posté le 25-01-2005 à 16:42:56    

si t'as gardé le nom par défaut de tes checkbox, checkbox1, checkbox2 etc.. tu fais ça
 
for i = 1 to 10
Controls("Checkbox" & i).Enabled = False
next i

Reply

Marsh Posté le 25-01-2005 à 16:56:10    

Ca marche !
 
Merci. :love:

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed