Private Sub CommandButton2_Click()
With Worksheets("Client")
.Activate
.Rows(2).EntireRow.Insert Shift:=xlDown
.Rows(3).Copy
With Rows(2)
.PasteSpecial Paste:=xlPasteFormats
.Cells(1) = TextNom.Value
.Cells(2) = TextPrenom.Value
.Cells(3) = TextAdresse.Value
.Cells(4) = TextCp.Value
.Cells(5) = TextVille.Value
.Cells(7) = TextPhone.Value
.Cells(8) = TextMail.Value
End With
End With
Unload Me
End Sub