Private Sub CmdSupprimer_Click()
Dim LI As Integer
Dim Response As Byte
' si vide on sort
If ComboBox1 = "" Then MsgBox "Rien à retirer", vbCritical, B: Exit Sub
'Ici un message demandant d'accepter la suppression en les listant
Response = MsgBox(ComboBox1 & " va être retiré de la liste", vbCritical + vbOKCancel, B & " : Suppression de " & Nom)
'Si Réponse OK on continue
If Response = 1 Then
'ici avec la Feuille on va faire :
Ws.Rows(Me.ComboBox1.ListIndex + 2).Delete Shift:=xlUp '<= ici
'On envoie un message de confirmation
MsgBox "Supprimé de la liste", vbInformation, B
Ini 'On lance la réinitialisation du UserForm (Macro en haut du Module)
'Si Réponse Annulation on envoie un message et on a rien fait
Else: MsgBox "Opération annulée", vbInformation, B
End If
End Sub