Re: Convert to PDF
- From: Jack Leach <dymondjack at hot mail dot com>
- Date: Mon, 8 Jun 2009 19:44:01 -0700
Stephen's PDF solution includes the ability to merge PDF documents.
I wasn't aware of this. In fact, a week or so ago I thought someone had
tried to do this with no real look.
Indeed, the case I had in mind was through Acrobat setup as a printer rather
than the ReportToPDF modules. My apologies...
--
Jack Leach
www.tristatemachine.com
"I haven't failed, I've found ten thousand ways that don't work."
-Thomas Edison (1847-1931)
"Jack Leach" wrote:
.Stephen's PDF solution includes the ability to merge PDF documents.
I wasn't aware of this. In fact, a week or so ago I thought someone had
tried to do this with no real look.
Good nice to know there is a way.
To the OP: disregard my post, apparently there is a way!
--
Jack Leach
www.tristatemachine.com
"I haven't failed, I've found ten thousand ways that don't work."
-Thomas Edison (1847-1931)
"Graham Mandeno" wrote:
Hi Jacinda
Stephen's PDF solution includes the ability to merge PDF documents. You
need to declare the following function:
Private Declare Function MergePDFDocuments _
Lib "StrStorage.dll" ( _
ByVal PDFMaster As String, _
ByVal PDFChild As String _
) As Boolean
When you process your first report (using ConvertUncompressedSnapshot),
specify the desired final PDF file as the output file.
Then, for the subsequent reports, specify a temporary file as the output
file, and then call MergePDFDocuments to append the result to the first one:
fResult = MergePDFDocuments(<final PDF name>, <temp file name>)
Kill <temp file name>
--
Good Luck :-)
Graham Mandeno [Access MVP]
Auckland, New Zealand
"Jacinda" <Jacinda@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:40B86D29-E8CE-4F72-B434-A01472F5996F@xxxxxxxxxxxxxxxx
Hi, I tried to post earlier but I don't think it went through...
I am using the following code:
http://www.lebans.com/reporttopdf.htm
it is working great, however I have a question. Is there anyway to
multi-select reports and have them run through the code via a loop or even
into one final PDF.
Any thoughts?
--
-Jacinda
- References:
- Convert to PDF
- From: Jacinda
- Re: Convert to PDF
- From: Graham Mandeno
- Re: Convert to PDF
- From: Jack Leach
- Convert to PDF
- Prev by Date: Re: Identifying Broken VBA References - BrokenReference.zip (0/7) - BrokenReference.doc (0/2)
- Next by Date: Re: Deployment for non-admin use - best practices
- Previous by thread: Re: Convert to PDF
- Next by thread: RE: Convert to PDF
- Index(es):
Relevant Pages
|