Hello,
I have my report set up correctly. In print view it looks good. When I send it to the printer to print duplex, it prints front to back and ignores the page ejects. I’m not well versed in VBA; I'm looking for code and how to insert it into the right access area. I’ve seen code (if this is going into the right direction)
But have no clue how to actually put it into access. Thanks in advance for helping out a newbie
I have my report set up correctly. In print view it looks good. When I send it to the printer to print duplex, it prints front to back and ignores the page ejects. I’m not well versed in VBA; I'm looking for code and how to insert it into the right access area. I’ve seen code (if this is going into the right direction)
Code:
DoCmd.OpenReport "myreport", acViewPreview,,,acHidden
Reports("myreport).Printer.Duplex = acPRDPHorizontal
DoCmd.OpenReport "myreport", acViewPreview
Comment