Private Sub CommandButton3_Click()
' Saisie de la location dans la base de données
Dim ligne%, col%
With Feuil1 ' si feuil1 est Bdd
ligne = .Range("A" & Rows.Count).End(xlUp).Row + 1'ici c'était pas bon
For col = 1 To 11
.Cells(ligne, col) = Controls("TxtB_" & col).Value
Next
End With
End Sub