Check box dose not stop first report

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top