I have a custom user form that I have set up to automatically save as PDF, however when I print the document, the font is small. What is the VBA code to set Font settings upon exporting to PDF? My code is as follows: Everything looks great except for when it prints.
'Code to Print the form or Export to PDF
sh.PageSetup.PrintArea = "$A$1:$N$106"
'sh.PrintOut copies:=1, IgnorePrintAreas:=False
sh.ExportAsFixedFormat xlTypePDF, ThisWorkbook.Path & Application.PathSeparator & frmform.txtlname.Value & ", " & frmform.txtfname.Value & " " & frmform.txtclient.Value & ".pdf"
MsgBox "Client Information has been printed.", vbOKOnly + vbInformation, "Print"
Application.ScreenUpdating = True
Application.DisplayAlerts = True
End Sub
'Code to Print the form or Export to PDF
sh.PageSetup.PrintArea = "$A$1:$N$106"
'sh.PrintOut copies:=1, IgnorePrintAreas:=False
sh.ExportAsFixedFormat xlTypePDF, ThisWorkbook.Path & Application.PathSeparator & frmform.txtlname.Value & ", " & frmform.txtfname.Value & " " & frmform.txtclient.Value & ".pdf"
MsgBox "Client Information has been printed.", vbOKOnly + vbInformation, "Print"
Application.ScreenUpdating = True
Application.DisplayAlerts = True
End Sub