Private Sub ComboUtil_Change()
If Me.ComboUtil.Value = "" Or Me.TextPrenom.Value = "" Or Me.TextMdP.Value = "" Then Exit Sub
With ThisWorkbook.Sheets("Accès")
Dim I As Integer: I = NomPnom(ComboUtil.Value, TextPrenom.Value, TextMdP.Value, .Range("A:A"))
If I = 0 Then MsgBox "Pas trouvé": Exit Sub
With .Cells(I, "A")
Me.TextPrenom.Value = .Cells.Offset(, 1)
Me.TextMdP = .Cells.Offset(, 2)
Me.CheckBoutAgent = .Cells.Offset(, 3) = "X" 'True/False
Me.CheckBouEntSort = .Cells.Offset(, 4) = "X"
Me.CheckBoutHor = .Cells.Offset(, 5) = "X"
Me.CheckBoutEtiq = .Cells.Offset(, 6) = "X"
Me.CheckFeuilCalcul = .Cells.Offset(, 7) = "X"
Me.CheckFeuilData =...