Private Sub btnenregistrer_Click()
With Sheets("Suivi de chantier").ListObjects(1).Range
.Parent.Visible = xlSheetVisible 'sécurité si la feuille est masquée
Application.Goto .Columns(1).EntireColumn.Find("", .Cells(1), xlValues) '1ère cellule vide
End With
ActiveCell.Resize(, 10) = Array(txtfolio, txtca, txtsyst, txtn, txtbig, txtdesignation, txtot, txtos, txtoi, txtrecule)
MsgBox "Votre dossier a bien été enregistré", vbOKOnly + vbInformation, "CONFIRMATION"
End Sub