vinkey33
Messages postés92Date d'inscriptionmercredi 9 décembre 2015StatutMembreDernière intervention23 janvier 2021
-
Modifié le 28 juin 2018 à 08:36
cs_MPi
Messages postés3877Date d'inscriptionmardi 19 mars 2002StatutMembreDernière intervention17 août 2018
-
9 juil. 2018 à 14:57
Bonjour, lors de l'enregistrement j'aimerais qu'il me mette les information de strFichierPDF mais quand ca enregistre sa me met le titre du formulaire, j'ai essayé différente manipe mais sa me met une erreur voici mon code:
Dim GESMOB_App1 As DAO.Database
Dim strFichier As String
Dim strFichierPDF As String
Dim strEtat As String
Dim strFiltre As String
Dim rst As DAO.Recordset
Set GESMOB_App1 = CurrentDb
Set rst = GESMOB_App1.OpenRecordset("Arch_envoie_SAV", dbOpenDynaset)
strFichier = "C:\Users\goncak\Desktop\GESMOB" & "Fiche Retour SAV"
strFichierPDF = Format(rst("N°"), "000") & " " & rst![Prénom/Nom] & Now() & ".pdf"
DoCmd.OutputTo acOutputForm, strFichierPDF, acFormatPDF, strFichierPDF, False
rst.MoveFirst
While Not rst.EOF
rst.MoveNext
Wend
rst.Close
Set rst = Nothing
MsgBox "Opération terminée !", vbInformation