D
Dave Elliott
This is the code that should print (all) my checks from a form to a report.
It only prints one record though.
There are no events or code that run from the Report.
How can I make it print all the records?
On Error GoTo Err_Command100_Click
Dim stDocName As String
stDocName = "RCheckAll"
DoCmd.OpenReport stDocName, acNormal
Exit_Command100_Click:
Exit Sub
Err_Command100_Click:
MsgBox Err.Description
Resume Exit_Command100_Click
It only prints one record though.
There are no events or code that run from the Report.
How can I make it print all the records?
On Error GoTo Err_Command100_Click
Dim stDocName As String
stDocName = "RCheckAll"
DoCmd.OpenReport stDocName, acNormal
Exit_Command100_Click:
Exit Sub
Err_Command100_Click:
MsgBox Err.Description
Resume Exit_Command100_Click