Private Sub CommandButton1_Click()
Dim L As Integer
If MsgBox("CONFIRMEZ-VOUS L'INSCRIPTION", vbYesNo, "DEMANDE DE CONFIMATION D'AJOUT") = vbYes Then
With Sheets("Cotipack")
L = .[A65000].End(xlUp).Row + 1
.Range("A" & L).Value = ComboBox13.Value
.Range("B" & L).Value = TextBox1.Value
.Range("C" & L).Value = TextBox2.Value
.Range("J" & L).Value = ComboBox6.Value
.Range("D" & L).Value = ComboBox9.Value
.Range("E" & L).Value = ComboBox10.Value
.Range("F" & L).Value = ComboBox11.Value
.Range("G" & L).Value = ComboBox12.Value
End With
End If
End Sub