svp j arrive pas a modifier mon code
vous pouvez me le modifier afin que
textbox4 renvoie une date dd/mm/yyyy
textbox9 renvoie une date dd/mm/yyyy
textbox12 renvoie une date dd/mm/yyyy
textbox15 renvoie une date dd/mm/yyyy
textbox16 renvoie une date dd/mm/yyyy
textbox17 renvoie une date dd/mm/yyyy
'***************************
'Modifier le bon d'entree
'***********************
Private Sub CommandButton2_Click()
Dim LIGNE As Integer
LIGNE = ComboBox1.ListIndex + 2
If ComboBox1.Value = "" Then
MsgBox ("VEUILLEZ REMPLIR LE CHAMP RECHERCHE")
Else
Cells(LIGNE, 1) = TextBox1.Value
Cells(LIGNE, 2) = TextBox2.Value
Cells(LIGNE, 3) = TextBox3.Value
Cells(LIGNE, 4) = TextBox4.Value
Cells(LIGNE, 5) = TextBox5.Value
Cells(LIGNE, 6) = TextBox6.Value
Cells(LIGNE, 7) = TextBox7.Value
Cells(LIGNE, 8) = TextBox8.Value
Cells(LIGNE, 9) = TextBox9.Value
Cells(LIGNE, 10) = TextBox10.Value
Cells(LIGNE, 11) = TextBox11.Value
Cells(LIGNE, 12) = TextBox12.Value
Cells(LIGNE, 13) = TextBox13.Value
Cells(LIGNE, 14) = TextBox14.Value
Cells(LIGNE, 15) = TextBox15.Value
Cells(LIGNE, 16) = TextBox16.Value
Cells(LIGNE, 17) = TextBox17.Value
Cells(LIGNE, 18) = TextBox18.Value
End If
End Sub