In my Access database users print reports to mail to suppliers about queries on invoices.
I want them to be able to save these reports in a file and print them all together at the end of the day.
I have created an output to file command button that saves the reports as a snapshot. Saving to his format seems to be the only way to retain choices made in check boxes when the report is printed.
CODE:
Private Sub PrintToFile_Click()
On Error GoTo Err_PrintToFile_Click
Dim stDocName As String
stDocName = "Letter1"
DoCmd.OutputTo acReport, stDocName, acFormatSNP
Exit_PrintToFile_Click:
Exit Sub
Err_PrintToFile_Click:
MsgBox Err.Description
Resume Exit_PrintToFile_Click
End Sub
However, I can not get the reports to print as a batch.
Any Clues?
I want them to be able to save these reports in a file and print them all together at the end of the day.
I have created an output to file command button that saves the reports as a snapshot. Saving to his format seems to be the only way to retain choices made in check boxes when the report is printed.
CODE:
Private Sub PrintToFile_Click()
On Error GoTo Err_PrintToFile_Click
Dim stDocName As String
stDocName = "Letter1"
DoCmd.OutputTo acReport, stDocName, acFormatSNP
Exit_PrintToFile_Click:
Exit Sub
Err_PrintToFile_Click:
MsgBox Err.Description
Resume Exit_PrintToFile_Click
End Sub
However, I can not get the reports to print as a batch.
Any Clues?