Bonjour à tou(te)s,
Bonjour Chris,
Au lieu de KeyPress, utilises l'événement KeyDown:
Private Sub SS1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(SS1) = SS1.MaxLength Then
SS2 = keyccode
SS2.SetFocus
End If
End Sub
Private Sub SS2_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If Len(SS2) = SS2.MaxLength Then
SS3 = keyccode
SS3.SetFocus
End If
End Sub
Cordialement.
PS: maintenant, si tu as un grand nombre de TextBox, la solution par modules de classe proposée par Nicole est de loin préférable mais elle demande une certaine maîtrise de VBA.