B
Bob Vance
I have a check box on my form to print Visa card details on my report or
not, So when it is ticked it will not print them on statement, but when it
is ticked it always prints the first Statement with the visa card details
but not the rest
BTW this is a batch print:
Private Sub cmdPrintAll_Click()
Dim stDocName As String
stDocName = "rptPostConfirm"
DoCmd.OpenReport stDocName, acNormal
Dim savRepName As String, savFileName As String
DoCmd.OpenReport "rptOwnerPaymentMethodBatch", acNormal, , , , "Statement"
DoCmd.Close acForm, Me.Name
End Sub
not, So when it is ticked it will not print them on statement, but when it
is ticked it always prints the first Statement with the visa card details
but not the rest
BTW this is a batch print:
Private Sub cmdPrintAll_Click()
Dim stDocName As String
stDocName = "rptPostConfirm"
DoCmd.OpenReport stDocName, acNormal
Dim savRepName As String, savFileName As String
DoCmd.OpenReport "rptOwnerPaymentMethodBatch", acNormal, , , , "Statement"
DoCmd.Close acForm, Me.Name
End Sub