Private Sub ButOk_Click()
Dim Ligne As Long, Cel As Range
If Trim(Me.CombCode) = "" Then
MsgBox "Vous n'avez sélectionné aucun(e) employé(e) !"
Exit Sub
End If
With Sheets("Agents")
Set Cel = .Columns("A").Find(What:=Me.CombCode, LookIn:=xlValues, LookAt:=xlWhole)
If Not Cel Is Nothing Then
Ligne = Cel.Row
If MsgBox("voulez-vous supprimer les informations concernant " & Me.TextBox1.Value & " " & Me.TextBox3.Value & " " & Me.TextBox4.Value & "?", vbQuestion + vbYesNo, "Suppression d'un(e) employé(e)") <> vbYes Then Exit Sub
"METTRE LE CODE DE SUPPRESSION ICI"
End If
End With
Init_Combo
End Sub