bonjour,
j'ai créé un bouton CLEAR dans mon userform pour le vider complètement de son contenu.
voilà ce que ça donne:
Private Sub CommandButton2_Click()
TextBox1.Value = ""
TextBox2.Value = ""
TextBox3.Value = ""
TextBox4.Value = ""
TextBox5.Value = ""
TextBox6.Value = ""
TextBox7.Value = ""
TextBox8.Value = ""
TextBox9.Value = ""
TextBox10.Value = ""
TextBox11.Value = ""
TextBox12.Value = ""
TextBox13.Value = ""
TextBox14.Value = ""
TextBox15.Value = ""
TextBox16.Value = ""
TextBox17.Value = ""
tout marche, mais c'est très rébarbatif à saisir comme code.
est ce qu'il existe un code plus simple pour arriver au même résultats???