Hi
currently I am outputting reports (in access 2003) as rtf but I would like to output, instead, as PDF.
Here is the code associated with outputting as rtf:
and
What would I need to change it to to print as PDF? As well as changing these is there anything else I would need to do?
Thanks!
currently I am outputting reports (in access 2003) as rtf but I would like to output, instead, as PDF.
Here is the code associated with outputting as rtf:
Code:
DoCmd.OutputTo acReport, MyChoice, acFormatRTF, "c:\" & MyReport & ".rtf", False, ""
Code:
Set oAttach = .Attachments.Add("c:\" & MyReport & ".rtf")
Thanks!
Comment