locked
In ACCESS 2010 how can I print multiple reports from a command button RRS feed

  • Question

  • In ACCESS 2003 I could print multiple copie oa report. Now that I am using ACCESS 2010 that process no longer works.

    ex. Dim stDocName As String

        stDocName = "rptCustomerInvoiceWithForm"
        DoCmd.OpenReport stDocName, acNormal
        DoCmd.OpenReport stDocName, acNormal
        stDocName = "rptTermsOfSale"
        DoCmd.OpenReport stDocName, acNormal
        stDocName = "rptCustomerDeliveryWithForm"
        DoCmd.OpenReport stDocName, acNormal
        stDocName = "rptCustomerPackingWithForm"
        DoCmd.OpenReport stDocName, acNormal

    Monday, January 9, 2012 8:12 PM