Mackbear
Registered User.
- Local time
- Today, 15:53
- Joined
- Apr 2, 2019
- Messages
- 168
Hello everyone, hope you are all doing fine. I hope I can get some help on this code I found by googling. This always says I have Invalid folder path. I don't know which I causing the error. Here's the code:
Dim fileName As String, fldrPath As String, filePath As String, strusername As String
Dim answer As Integer:banghead:
strusername = Environ("UserName")
fileName = "Template-Please Rename" 'filename for PDF file*
fldrPath = "C:\documents and settings" & strusername & "\Desktop" 'folder path where pdf file will be saved *
filePath = fldrPath & "" & fileName & ".pdf"
'check if file already exists
If FileExist(filePath) Then
answer = MsgBox(prompt:="PDF file already exists: " & vbNewLine & filePath & vbNewLine & vbNewLine & _
"Would you like to replace existing file?", buttons:=vbYesNo, Title:="Existing PDF File")
If answer = vbNo Then Exit Sub
End If
On Error GoTo invalidFolderPath
DoCmd.OutputTo objecttype:=acOutputReport, objectName:=Me.Name, outputformat:=acFormatPDF, outputFile:=filePath
MsgBox prompt:="PDF File exported to: " & vbNewLine & filePath, buttons:=vbInformation, Title:="Report Exported as PDF"
Exit Sub
invalidFolderPath:
MsgBox prompt:="Error: Invalid folder path. Please update code.", buttons:=vbCritical
Dim fileName As String, fldrPath As String, filePath As String, strusername As String
Dim answer As Integer:banghead:
strusername = Environ("UserName")
fileName = "Template-Please Rename" 'filename for PDF file*
fldrPath = "C:\documents and settings" & strusername & "\Desktop" 'folder path where pdf file will be saved *
filePath = fldrPath & "" & fileName & ".pdf"
'check if file already exists
If FileExist(filePath) Then
answer = MsgBox(prompt:="PDF file already exists: " & vbNewLine & filePath & vbNewLine & vbNewLine & _
"Would you like to replace existing file?", buttons:=vbYesNo, Title:="Existing PDF File")
If answer = vbNo Then Exit Sub
End If
On Error GoTo invalidFolderPath
DoCmd.OutputTo objecttype:=acOutputReport, objectName:=Me.Name, outputformat:=acFormatPDF, outputFile:=filePath
MsgBox prompt:="PDF File exported to: " & vbNewLine & filePath, buttons:=vbInformation, Title:="Report Exported as PDF"
Exit Sub
invalidFolderPath:
MsgBox prompt:="Error: Invalid folder path. Please update code.", buttons:=vbCritical