G
Guest
I need to provide the user the capability, from menu choices, to print either
one page of a mailing label report or the entire report. I have made a second
query for the report that produces only the top 30 records (one page). I am
using the following code to produce the full report:
DoCmd.OpenReport "rptStickerLabels", acViewNormal, "qryStickersMail"
When I substitue the following, the report still prints out in its entirety:
DoCmd.OpenReport "rptStickerLabels", acViewNormal, "qryStickersTestPrint"
The query in the last line is the same as the first except that it calls for
the top 30 records.
How can I make this work? Or is there a better way?
Thak you for your considration.
one page of a mailing label report or the entire report. I have made a second
query for the report that produces only the top 30 records (one page). I am
using the following code to produce the full report:
DoCmd.OpenReport "rptStickerLabels", acViewNormal, "qryStickersMail"
When I substitue the following, the report still prints out in its entirety:
DoCmd.OpenReport "rptStickerLabels", acViewNormal, "qryStickersTestPrint"
The query in the last line is the same as the first except that it calls for
the top 30 records.
How can I make this work? Or is there a better way?
Thak you for your considration.