I have a print option the prints a job sheet from access and then prints a list of files listed on the job. I have used the Shell Execute to print these if they are PDF's:-
This all works fine however some of the files are in A3 format and only have A4 in the tray so only prints part of the page.
If you open the PDF and print (Ctrl P) and you choose Fit to Printable area or Shrink oversized pages they print on A4 OK. (Obviously smaller size but this is OK)
Is there any way I can pass this print property to the printer so A3 prints on A4 paper?.
You could define a printer object to use A4 paper, and then use the following code (or some variation of it) to temporarily change the default printer so that your Shell code uses the A4 printer:
Public Sub PrintToSpecificPrinter(strPrinter As String, strReport As String)'Created by Helen Feddema 12-Feb-2010'Last modified by Helen Feddema 12-Feb-2010On Error GoTo ErrorHandler Dim prtCurrent As Printer Dim prtDefault As Printer 'Save current default printer Set prtDefault = Application.Printer Debug.Print "Current default printer: " & prtDefault.DeviceName 'Select a specific printer as new default printer Application.Printer = Printers(strPrinter) 'Print the report DoCmd.OpenReport strReport 'Set printer back to former default printer Application.Printer = prtDefaultErrorHandlerExit: Exit SubErrorHandler: MsgBox "Error No: " & Err.Number & "; Description: " & _ Err.Description Resume ErrorHandlerExitEnd Sub================================Public Function ListPrinters()'Lists Access printer names as used in VBA code'to the Immediate window Dim prt As Access.Printer For Each prt In Application.Printers Debug.Print prt.DeviceName Next prtEnd Function
Access will typically store this info for each report.
So it would seem that you would have to create some fairly complex code to read that setting, then dynamically change the printer properties.
Either that, or print the A3 and A4 reports separately...
Are you actually creating the PDFs from Access, or printing PDF files which may or may not have been created from Access? If you are creating the PDFs directly from Access, you can use this syntax instead of the Shell command:
FYI, if your Microsoft Access database is compiled in an MDE, ADE or ACCDE, you can't change the paper size of a report programmatically via VBA. You'll need to keep a separate copy of the report for each paper size and output the appropriate one.
0
donhannamAuthor Commented:
Thanks for the comments - to clarify I am not creating a report or PDF in access just wanting to print a PDF that is stored in a file. After printing a job sheet I also want to print some drawings which are stored on server. I record the file path in access and to print use the above shell execute command to print.
Helen - looks like there may be some way to temporarily change the default printer properties and then set these back. I had a look at the printer properties and there is a "Fit to Size property on my printer'. However when set the default to this and I open a page in Adobe reader and print it does not use this - need to set "Shrink Oversized pages" in Adobe print dialog.
Not sure if there is any way to change the print settings for Adobe reader?.
0
Question has a verified solution.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Ready to showcase your work, publish content or promote your business online? With Squarespace’s award-winning templates and 24/7 customer service, getting started is simple. Head to Squarespace.com and use offer code ‘EXPERTS’ to get 10% off your first purchase.
Open in new window