I am a novice Access programmer so this may seem dumb but ...
I have a form which builds a bill of lading. From a cmd button on form I print a BOL. Am trying to print multiple copies where the only thing different from one copy to the next is copy number, ie, 1 for 1st, 2 for 2nd. The following doesn't work:
Public PrintCopyCtr as Integer
cmdPrintBOL__Click '(in form)
Let PrintCopyCtr = 1
DoCmd.OPenReport.....
Let PrintCopyCtr = 2
DoCmd.OPenReport.....
End Sub
I can't find a way to get PrintCopyCtr to print on report.
Thanks
I have a form which builds a bill of lading. From a cmd button on form I print a BOL. Am trying to print multiple copies where the only thing different from one copy to the next is copy number, ie, 1 for 1st, 2 for 2nd. The following doesn't work:
Public PrintCopyCtr as Integer
cmdPrintBOL__Click '(in form)
Let PrintCopyCtr = 1
DoCmd.OPenReport.....
Let PrintCopyCtr = 2
DoCmd.OPenReport.....
End Sub
I can't find a way to get PrintCopyCtr to print on report.
Thanks