C
Claire
Hi all,
I have programmed in to a control on a form for it to print 11 copies of a
report when it is clicked. It worked just fine a few weeks ago (at least, I
thought it did) but the last three times it has been acting up. After
printing 9 copies it starts printing a bunch of pages of junk (symbols on the
top of the sheets, etc). I cancel that print job on the printer, and then it
prints one more copy, just fine. I have no real idea where the issue may be,
but here's my code pasted below:
Private Sub Print11_Click()
Dim intCounter As Integer
intCounter = 11
Do While intCounter > 0
DoCmd.OpenReport "38 Hour Report", acViewNormal
intCounter = intCounter - 1
Loop
End Sub
Thanks for any suggestions you may have!
~Claire
I have programmed in to a control on a form for it to print 11 copies of a
report when it is clicked. It worked just fine a few weeks ago (at least, I
thought it did) but the last three times it has been acting up. After
printing 9 copies it starts printing a bunch of pages of junk (symbols on the
top of the sheets, etc). I cancel that print job on the printer, and then it
prints one more copy, just fine. I have no real idea where the issue may be,
but here's my code pasted below:
Private Sub Print11_Click()
Dim intCounter As Integer
intCounter = 11
Do While intCounter > 0
DoCmd.OpenReport "38 Hour Report", acViewNormal
intCounter = intCounter - 1
Loop
End Sub
Thanks for any suggestions you may have!
~Claire