• Assigning Report Printer

    Author
    Topic
    #463427

    The only technique I know for changing the printer and/or paper used for a report via code is to first open the report in Design Mode (hidden), modify the Printer settings, close (and save) the report, then actually print it.

    While this works good enough and is transparent to the user, it is limiting. I can’t use it with .mde databases or in situations where user only has a runtime version of Access.

    Is there another (better) way to assign a specific printer to a report?

    Viewing 0 reply threads
    Author
    Replies
    • #1182991

      You can assign a printer to a report after it has been opened in preview mode:

      Reports(“rptMyReport”).Printer = Application.Printers(“MyPrinter”)

      You can’t change the printer in the On Open event of the printer report though.

      • #1182996

        You can assign a printer to a report after it has been opened in preview mode:

        Reports(“rptMyReport”).Printer = Application.Printers(“MyPrinter”)

        You can’t change the printer in the On Open event of the printer though.

        That’s the same line of code I’m using now to change the printer after opening it in design mode. I was thinking I had to save the report after setting the printer and then print it, but I really don’t have to do that; I can just print it while it is open in preview (I can do it hidden so user isn’t confused). This does means I’d have to do this every time I went to print that report (rather than making it a permanent change in the report). I was worried that opening the report in preview mode and then resetting the printer (causing the report to reformat) might be a performance issue, but the reality is that most of the time I use a special printer it is for things like a Receipt printer, where I’m only printing 1 record anyway.

        Thanks, I’ll give it a try.

        • #1182999

          That’s the same line of code I’m using now to change the printer after opening it in design mode. I was thinking I had to save the report after setting the printer and then print it, but I really don’t have to do that; I can just print it while it is open in preview (I can do it hidden so user isn’t confused). This does means I’d have to do this every time I went to print that report (rather than making it a permanent change in the report). I was worried that opening the report in preview mode and then resetting the printer (causing the report to reformat) might be a performance issue, but the reality is that most of the time I use a special printer it is for things like a Receipt printer, where I’m only printing 1 record anyway.

          Thanks, I’ll give it a try.

          There’s a good section in the Litwin, Getz books Access 2002 Developer’s Handbook, also in the 97 and 2000 version,
          with a load of free API code to handle Printers.
          If you can find someone with the book, it is all on the CD.

      • #1183115

        You can assign a printer to a report after it has been opened in preview mode:

        Reports(“rptMyReport”).Printer = Application.Printers(“MyPrinter”)

        You can’t change the printer in the On Open event of the printer report though.

        I don’t think this will work out the way I want it. If you open the report in preview mode, you can’t make it hidden, so the whole operation (that I wanted to keep out of the user’s view) happens right there on the screen.

        I may go to changing the Application.Printer property. There is an exposure to problems if it is not properly reset before the next report prints, but at least I know I can use it in .mde and runtime situations.

    Viewing 0 reply threads
    Reply To: Assigning Report Printer

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: