Private Sub CommandButton6_Click() ' Supprimer un article
If ListBox1.ListIndex = -1 Then
MsgBox ("Veuillez effectuer un choix d'article préalable !!!")
Exit Sub
End If
If MsgBox("Voulez vous supprimer l'article sélectionné ?", vbYesNo) = vbNo Then
MsgBox ("Traitement annulé !!!")
Exit Sub
End If
LIGNECHOISIE = ListBox1.ListIndex + 2
Sheets("BASE ARTICLES").Rows(LIGNECHOISIE & ":" & LIGNECHOISIE).Delete
Kill "P:\DINKYTOYS\Photo BDD\txt_photo.Value" & ".jpg"
MsgBox ("Suppression effectuée !!!")
Call UserForm_Initialize
End Sub