Private Sub CommandButton2_Click()
Rows("2:2").Select
Selection.Insert SHIFT:=xlDown, copyorigin:=xlfromatfromleftorAbove
With Sheets("BD")
.Cells(3, 1) = TextBox1
.Cells(3, 2) = TextBox2
.Cells(3, 3) = TextBox3
.Cells(3, 4) = TextBox4
.Cells(3, 5) = TextBox5
.Cells(3, 6) = TextBox6
.Cells(3, 7) = TextBox7
.Cells(3, 8) = TextBox8
.Cells(3, 9) = ListBox1
.Cells(3, 10) = TextBox10
.Cells(3, 11) = TextBox11
.Cells(3, 12) = TextBox12
.Cells(3, 13) = TextBox13
.Cells(3, 14) = TextBox14
.Cells(3, 15) = TextBox15
.Cells(3, 16) = TextBox16
.Cells(3, 17) = TextBox17
.Cells(3, 18) = TextBox18
.Cells(3, 19) = TextBox19
.Cells(3, 20) = ListBox2
.Cells(3, 21) = TextBox35
.Cells(3, 22) = TextBox36
.Cells(3, 23) = TextBox31
.Cells(3, 24) = TextBox32
.Cells(3, 25) = ListBox10
.Cells(3, 26) = TextBox37
.Cells(3, 27) = TextBox38
.Cells(3, 28) = ComboBox1
.Cells(3, 29) = ComboBox2
.Cells(3, 30) = ComboBox3
.Cells(3, 31) = ListBox7
.Cells(3, 32) = ListBox8
.Cells(3, 33) = ListBox9
.Cells(3, 34) = TextBox26
.Cells(3, 35) = TextBox30
.Cells(3, 36) = ListBox11
.Cells(3, 37) = ListBox12
.Cells(3, 38) = TextBox29
End With
Unload FORMULAIRE_DE_SAISIE
Load FORMULAIRE_DE_SAISIE 'Load "charge" et "affiche" (show) en même temps...
End Sub