جزاك الله خيرا
لو محتاج عند التصدير يحفظ الصوره فى فولدر محدد برقم العميل هياخده من النموذج واسم الصوره يحمل اسم العميل والتاريخ الموجود فى النموذج
صيغه التعديل هتكون ايه ؟
مثل الكود ده بدل ماهو PDF يكون صوره
Dim FS, Cf, strFolder
Const msoFileDialogFilePicker As Long = 3
Dim objDialog As Object
Set objDialog = Application.FileDialog(msoFileDialogFilePicker)
strFolder = "D:\System\PDF\" & Me.id
Set FS = CreateObject("Scripting.FileSystemObject")
If FS.FolderExists(strFolder) = False Then
Set Cf = FS.CreateFolder(strFolder)
If FS.FolderExists(strFolder) = True Then
End If
End If
Dim FileName As String, fldrPath As String, filepath As String
Dim answer As Integer
FileName = Me.pn & " " & "-" & " " & Me.tes & " " & "-" & " " & Format([Qdate], "dd-mm-yyyy") 'filename for PDF file*
fldrPath = "D:\System\PDF\" & Me.id 'folder path where pdf file will be saved *
'CurrentProject.Path &
filepath = fldrPath & "\" & FileName & ".pdf"
'check if file already exists
If FileExists(filepath) Then
answer = MsgBox(Prompt:="PDF file already exists: " & vbNewLine & filepath & vbNewLine & vbNewLine & _
"هل تريد استبدال الملف الموجود؟", Buttons:=vbYesNo, Title:="هذا الملف موجود")
If answer = vbNo Then Exit Sub
End If
DoCmd.OutputTo ObjectType:=acOutputReport, objectName:="QWE", outputformat:=acFormatPDF, outputFile:=filepath