Private Sub commandbutton1_click()
' Pour ajouter une nouvelle entrée
Dim ligne As Long
If ComboBox1.Value = "" Then
MsgBox ("Veuillez renseigner le champ ""Nom de l'enfant"" !")
Else
If MsgBox("Confirmez-vous l'ajout des données ?", vbYesNo, "Confirmaion") = vbYes Then
With Range("t_BDD")
ligne = IIf(.ListObject.DataBodyRange Is Nothing, 1, .ListObject.ListRows.Count + 1)
.Cells(ligne, 1) = ComboBox1.Value ' Nom e
.Cells(ligne, 2) = TextBox1.Value ' Prénom e
.Cells(ligne, 3) = TextBox2.Value ' Date n e
.Cells(ligne, 4) = TextBox3.Value ' GSM
.Cells(ligne, 5) = TextBox4.Value ' e-mail
If IsDate(TextBox5.Value) Then ' Date de jugement
.Cells(ligne, 6) = CDate(TextBox5.Value)
End If
If IsDate(TextBox6.Value) Then ' Date de mise en oeuvre
.Cells(ligne, 7) = CDate(TextBox6.Value)
End If
.Cells(ligne, 8) = TextBox7.Value ' Établissement
.Cells(ligne, 9) = TextBox8.Value ' Adresse
.Cells(ligne, 10) = TextBox9.Value ' Commune
.Cells(ligne, 11) = TextBox10.Value ' Code p
.Cells(ligne, 12) = TextBox11.Value ' E-mail
.Cells(ligne, 13) = TextBox12.Value ' Tél
.Cells(ligne, 14) = TextBox13.Value ' Nom M
.Cells(ligne, 15) = TextBox14.Value ' Prenom M
.Cells(ligne, 16) = TextBox15.Value ' Adresse
.Cells(ligne, 17) = TextBox16.Value ' Code P
.Cells(ligne, 18) = TextBox17.Value ' Commune
.Cells(ligne, 19) = TextBox18.Value ' Tél
.Cells(ligne, 20) = TextBox19.Value ' E-mail
.Cells(ligne, 21) = TextBox20.Value ' Nom P
.Cells(ligne, 22) = TextBox21.Value ' Prénom
.Cells(ligne, 23) = TextBox22.Value ' Adresse
.Cells(ligne, 24) = TextBox23.Value ' Code P
.Cells(ligne, 25) = TextBox24.Value ' Commune
.Cells(ligne, 26) = TextBox25.Value ' Tél
.Cells(ligne, 27) = TextBox26.Value ' E-mail
.Cells(ligne, 28) = ComboBox2.Value ' Code enfant
.Cells(ligne, 29) = ComboBox3.Value ' Ouvert
' Unload UserForm1
' UserForm1.Show 0
End With
End If
End If
End Sub