'TERMINER LA JOURNEE
Private Sub CommandButton21_Click()
Dim NbLig As Integer, i As Integer
With Feuil1
NbLig = .[A65000].End(xlUp).Row + 1
.Range("P" & NbLig) = commentaire
.Range("A" & NbLig) = CDate(saisiedatejour) 'mettre éventuellement un contrôle se saisie
For i = 1 To 14
.Cells(NbLig, i + 1) = Me.Controls("TextBox" & i).Value
Next
End With
End Sub