Private Sub txtNom_Change()
Majuscule Me.txtNom
With Me
If Application.CountIf(ActiveSheet.[A:A], .txtNom) > 0 Then ' Ce nom existe t-il ?
Ligne = Application.Match(.txtNom, [A:A], 0) ' Si oui, sur quelle ligne est il ?
.cboStatut = Cells(Ligne, "B") ' Remplir les champs
.txtAdresse = Cells(Ligne, "C")
.txtCP = Cells(Ligne, "D")
.txtVille = Cells(Ligne, "E")
.txtMobile = Cells(Ligne, "F")
.txtEmail = Cells(Ligne, "G")
.txtCommentaire = Cells(Ligne, "H")
End If
End With
End Sub