Bjr, j'aimerai savoir si l'on peut faire un code unique pour toutes mes textbox, car j'en ai 15 a configurer ?
VB:
Private Sub Joueur1_Change()
Joueur1 = UCase(Mid(Joueur1, 1, InStr(1, Joueur1, " "))) & _
Application.Proper(Mid(Joueur1, InStr(1, Joueur1, " ") + 1))
End Sub
Private Sub Joueur2_Change()
Joueur2 = UCase(Mid(Joueur2, 1, InStr(1, Joueur2, " "))) & _
Application.Proper(Mid(Joueur2, InStr(1, Joueur2, " ") + 1))
End Sub
Private Sub Joueur3_Change()
Joueur3 = UCase(Mid(Joueur3, 1, InStr(1, Joueur3, " "))) & _
Application.Proper(Mid(Joueur3, InStr(1, Joueur3, " ") + 1))
End Sub
Private Sub Joueur4_Change()
Joueur4 = UCase(Mid(Joueur4, 1, InStr(1, Joueur4, " "))) & _
Application.Proper(Mid(Joueur4, InStr(1, Joueur4, " ") + 1))
End Sub