
Signature
Wayne
Manchester, England.
Try
DoCmd.OpenReport "ReportName", acViewPreview, .........
DoCmd.PrintOut acPrintAll , , , , 5
DoCmd.Close acReport, "ReportName"

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Hi
>
[quoted text clipped - 17 lines]
>
> Any ideas
Wayne-I-M - 20 Jan 2008 14:42 GMT
Hi Douglas
No - "very" strange with this you get 1 copy of the report and 5 copies of
the popup form.
If Me.ticklSPcards = -1 Then
DoCmd.SetWarnings False
DoCmd.OpenReport "rptCard", acViewNormal, "", "Filter Is Here",
acNormal
DoCmd.PrintOut acPrintAll, , , , 5
DoCmd.Close acReport, "rptCard"
DoCmd.SetWarnings True
End If
I think it may be just "one of those things" :-)
I can use the normal print (5 times). I just assumed there would be a more
elegant method.
Thanks for the input anyway Douglas

Signature
Wayne
Manchester, England.
> Try
>
[quoted text clipped - 23 lines]
> >
> > Any ideas
Douglas J. Steele - 20 Jan 2008 15:51 GMT
Note that I suggested using acViewPreview, not acViewNormal.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Hi Douglas
>
[quoted text clipped - 47 lines]
>> >
>> > Any ideas
Wayne-I-M - 20 Jan 2008 16:26 GMT
Perfect.
Many thanks Douglas

Signature
Wayne
Manchester, England.
> Note that I suggested using acViewPreview, not acViewNormal.
>
[quoted text clipped - 49 lines]
> >> >
> >> > Any ideas