Re:accéder à ne textbox suivant critère dans userf
Re
Oui c'est normal car tu ecris
REPRISE.Show
If TextBox25.Value = 'OR' Then
Mais ton textbox25 c'est celui de l'autre userform
il faut donc le préciser avant le nom du textbox
REPRISE.Show
If Userform1.TextBox25.Value = 'OR' Then
|