Private Sub ComboBox1_Change()
Application.DisplayAlerts = False
If ComboBox1.Text <> "" Then
If MsgBox("Êtes-vous certain de vouloir supprimer l'onglet sélectionné?", vbYesNo + vbInformation) = vbYes Then Sheets(ComboBox1.Text).Delete
End If
End Sub