VBA Code Examples

Examples of VBA

Create a PDF

outputto



Microsoft Outputto Infotmation

makepdf = "c:\files\StandingOrder.pdf"
DoCmd.OutputTo acOutputReport, "standing order", acFormatPDF, makepdf, False

or

DoCmd.OutputTo acOutputReport, "standing order", acFormatPDF, "c:\files\StandingOrder.pdf", False

Back