Albert just posted a solution to this issue:
Just open the report *first* with the restrictions...and *then* send to
pdf...
eg:
DoCmd.OpenReport strReportName, acViewPreview, , strWhere
Reports(strReportName).Visible = False
Call ConvertReportToPDF(strReportName, , strDocPDFName, False, False)
DoCmd.Close acReport, strReportName
*very* important to CLOSE the reprot after the above.....

Signature
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pleaseNOOSpamKallal@msn.com
--
HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
> Currently we output reports to pdf using a different product, and would
> like to change it because some of the issues we are having. I came
[quoted text clipped - 15 lines]
>
> Nick
nwulf@smbsc.com - 29 Sep 2006 21:43 GMT
Very good. I will give that a try...makes perfect sense.
Nick