<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309136#M60736</link>
    <description>If you are already creating the separate PDfs and you are able to save the&lt;BR /&gt;
full path names in an array, you can pass that array and the "combined file&lt;BR /&gt;
name" to the following sub(This requires you to reference the Adobe Acrobat&lt;BR /&gt;
5.0 Type Library.):&lt;BR /&gt;
&lt;BR /&gt;
btw, We use Win2PDF printer from daneprairie.com to programmatically create&lt;BR /&gt;
the single PDF files.  It's easy to name the files through VB code and it is&lt;BR /&gt;
only $30.&lt;BR /&gt;
&lt;BR /&gt;
Private Sub CombinePDFs(arrPdfFiles() As String, strFileName As String)&lt;BR /&gt;
    Dim b As Boolean&lt;BR /&gt;
    Dim AcroPDDoc As CAcroPDDoc&lt;BR /&gt;
    Dim PDDoc As CAcroPDDoc&lt;BR /&gt;
    Dim i As Integer&lt;BR /&gt;
&lt;BR /&gt;
    Set AcroPDDoc = CreateObject("AcroExch.PDDoc")&lt;BR /&gt;
    Set PDDoc = CreateObject("AcroExch.PDDoc")&lt;BR /&gt;
&lt;BR /&gt;
        b = AcroPDDoc.Open(arrPdfFiles(0))&lt;BR /&gt;
        b = AcroPDDoc.Save(1, strFileName)&lt;BR /&gt;
        For i = LBound(arrPdfFiles) + 1 To UBound(arrPdfFiles)&lt;BR /&gt;
            b = PDDoc.Open(arrPdfFiles(i))&lt;BR /&gt;
            b = AcroPDDoc.InsertPages(0, PDDoc, 0, 1, False)&lt;BR /&gt;
            b = AcroPDDoc.Save(1, strFileName)&lt;BR /&gt;
            b = PDDoc.Close&lt;BR /&gt;
        Next i&lt;BR /&gt;
&lt;BR /&gt;
    b = AcroPDDoc.Close&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Chris&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"FaciCAD" &lt;CAD&gt; wrote in message&lt;BR /&gt;
news:6281C41B5B6C84E4B940C0E99D6E0794@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; Iam using Adobe Acrobat 5, but I don't want to insert each sheet in PDF&lt;BR /&gt;
&amp;gt; file(the way use now), beacause some time I have more then 50 sheet :(.  I&lt;BR /&gt;
&amp;gt; would like AutoCAD make single file for each sheet I have in my DWG.  Am&lt;BR /&gt;
use&lt;BR /&gt;
&amp;gt; Acrobate PDFWriter&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/CAD&gt;</description>
    <pubDate>Fri, 12 Sep 2003 09:54:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2003-09-12T09:54:24Z</dc:date>
    <item>
      <title>PDF Multi-sheet</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309131#M60731</link>
      <description>Can I plot multi-sheet in same the PDF file.</description>
      <pubDate>Thu, 11 Sep 2003 11:25:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309131#M60731</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-11T11:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: PDF Multi-sheet</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309132#M60732</link>
      <description>That depends on the PDF application you're using. We use Acrobat, and add&lt;BR /&gt;
additional sheets (and other features, such as security) after the plotting&lt;BR /&gt;
process.&lt;BR /&gt;
___&lt;BR /&gt;
&lt;BR /&gt;
"FaciCAD" &lt;CAD&gt; wrote in message&lt;BR /&gt;
news:f1897ba.-1@WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; Can I plot multi-sheet in same the PDF file.&lt;/CAD&gt;</description>
      <pubDate>Thu, 11 Sep 2003 11:52:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309132#M60732</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-11T11:52:14Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309133#M60733</link>
      <description>You could also publish a multi-page dwf and print it from the Express &lt;BR /&gt;
Viewer to PDF [I believe]&lt;BR /&gt;
___________________________&lt;BR /&gt;
Mike Tuersley&lt;BR /&gt;
AutoCAD Clinic&lt;BR /&gt;
Rand IMAGINiT Technologies</description>
      <pubDate>Thu, 11 Sep 2003 12:34:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309133#M60733</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-11T12:34:55Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309134#M60734</link>
      <description>Iam using Adobe Acrobat 5, but I don't want to insert each sheet in PDF&lt;BR /&gt;
file(the way use now), beacause some time I have more then 50 sheet :(.  I&lt;BR /&gt;
would like AutoCAD make single file for each sheet I have in my DWG.  Am use&lt;BR /&gt;
Acrobate PDFWriter</description>
      <pubDate>Fri, 12 Sep 2003 07:08:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309134#M60734</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-12T07:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: PDF Multi-sheet</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309135#M60735</link>
      <description>I use a program called AcroPlot Junior.  This can plot to one PDF file based&lt;BR /&gt;
on your settings (I do all Paperspace Layout tabs).  Their website is&lt;BR /&gt;
http://cadzation.com/acroplotauto_info.htm&lt;BR /&gt;
&lt;BR /&gt;
"FaciCAD" &lt;CAD&gt; wrote in message&lt;BR /&gt;
news:f1897ba.-1@WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; Can I plot multi-sheet in same the PDF file.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/CAD&gt;</description>
      <pubDate>Fri, 12 Sep 2003 09:40:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309135#M60735</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-12T09:40:10Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309136#M60736</link>
      <description>If you are already creating the separate PDfs and you are able to save the&lt;BR /&gt;
full path names in an array, you can pass that array and the "combined file&lt;BR /&gt;
name" to the following sub(This requires you to reference the Adobe Acrobat&lt;BR /&gt;
5.0 Type Library.):&lt;BR /&gt;
&lt;BR /&gt;
btw, We use Win2PDF printer from daneprairie.com to programmatically create&lt;BR /&gt;
the single PDF files.  It's easy to name the files through VB code and it is&lt;BR /&gt;
only $30.&lt;BR /&gt;
&lt;BR /&gt;
Private Sub CombinePDFs(arrPdfFiles() As String, strFileName As String)&lt;BR /&gt;
    Dim b As Boolean&lt;BR /&gt;
    Dim AcroPDDoc As CAcroPDDoc&lt;BR /&gt;
    Dim PDDoc As CAcroPDDoc&lt;BR /&gt;
    Dim i As Integer&lt;BR /&gt;
&lt;BR /&gt;
    Set AcroPDDoc = CreateObject("AcroExch.PDDoc")&lt;BR /&gt;
    Set PDDoc = CreateObject("AcroExch.PDDoc")&lt;BR /&gt;
&lt;BR /&gt;
        b = AcroPDDoc.Open(arrPdfFiles(0))&lt;BR /&gt;
        b = AcroPDDoc.Save(1, strFileName)&lt;BR /&gt;
        For i = LBound(arrPdfFiles) + 1 To UBound(arrPdfFiles)&lt;BR /&gt;
            b = PDDoc.Open(arrPdfFiles(i))&lt;BR /&gt;
            b = AcroPDDoc.InsertPages(0, PDDoc, 0, 1, False)&lt;BR /&gt;
            b = AcroPDDoc.Save(1, strFileName)&lt;BR /&gt;
            b = PDDoc.Close&lt;BR /&gt;
        Next i&lt;BR /&gt;
&lt;BR /&gt;
    b = AcroPDDoc.Close&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Chris&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"FaciCAD" &lt;CAD&gt; wrote in message&lt;BR /&gt;
news:6281C41B5B6C84E4B940C0E99D6E0794@in.WebX.maYIadrTaRb...&lt;BR /&gt;
&amp;gt; Iam using Adobe Acrobat 5, but I don't want to insert each sheet in PDF&lt;BR /&gt;
&amp;gt; file(the way use now), beacause some time I have more then 50 sheet :(.  I&lt;BR /&gt;
&amp;gt; would like AutoCAD make single file for each sheet I have in my DWG.  Am&lt;BR /&gt;
use&lt;BR /&gt;
&amp;gt; Acrobate PDFWriter&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/CAD&gt;</description>
      <pubDate>Fri, 12 Sep 2003 09:54:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309136#M60736</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-12T09:54:24Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309137#M60737</link>
      <description>do you mind sharing how you use it, I am trying to figure out a solution&lt;BR /&gt;
for our company and they were thinking in buying pushbutton, but it is&lt;BR /&gt;
expensive. &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Chris Picklesimer wrote:&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; If you are already creating the separate PDfs and you are able to save the&lt;BR /&gt;
&amp;gt; full path names in an array, you can pass that array and the "combined file&lt;BR /&gt;
&amp;gt; name" to the following sub(This requires you to reference the Adobe Acrobat&lt;BR /&gt;
&amp;gt; 5.0 Type Library.):&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; btw, We use Win2PDF printer from daneprairie.com to programmatically create&lt;BR /&gt;
&amp;gt; the single PDF files.  It's easy to name the files through VB code and it is&lt;BR /&gt;
&amp;gt; only $30.&lt;BR /&gt;
&amp;gt;</description>
      <pubDate>Wed, 17 Sep 2003 05:50:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309137#M60737</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-17T05:50:58Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309138#M60738</link>
      <description>Just use dwf - its free, the viewer is free, and it'd take you less than &lt;BR /&gt;
a day to write the code for it - win-win and you look good to mgmt!&lt;BR /&gt;
___________________________&lt;BR /&gt;
Mike Tuersley&lt;BR /&gt;
AutoCAD Clinic&lt;BR /&gt;
Rand IMAGINiT Technologies</description>
      <pubDate>Wed, 17 Sep 2003 07:26:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309138#M60738</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-17T07:26:39Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309139#M60739</link>
      <description>I apprecite the input, and I agree with you, but the mgt has taken  a&lt;BR /&gt;
approach to go PDF as clients have PDF installed on their machines, and&lt;BR /&gt;
it is a less of a hassle for them to wor with PDF's.  Also the repro&lt;BR /&gt;
house we have is setup to receive PDF's as well . so I have to find a&lt;BR /&gt;
solution for it. &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Mike Tuersley wrote:&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Just use dwf - its free, the viewer is free, and it'd take you less than&lt;BR /&gt;
&amp;gt; a day to write the code for it - win-win and you look good to mgmt!&lt;BR /&gt;
&amp;gt; ___________________________&lt;BR /&gt;
&amp;gt; Mike Tuersley&lt;BR /&gt;
&amp;gt; AutoCAD Clinic&lt;BR /&gt;
&amp;gt; Rand IMAGINiT Technologies&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
-------------------&lt;BR /&gt;
Nauman M&lt;BR /&gt;
CAD Bazaar&lt;BR /&gt;
*********NEW*********&lt;BR /&gt;
Add AEC Objects to the Layers(lkey) you want, not the Layers ADT Wants!!&lt;BR /&gt;
Add a Wall directly on the DEMO Layerkey, instead of switching it later.&lt;BR /&gt;
Download the eval at http://www.cadbazaar.com&lt;BR /&gt;
*********NEW*********&lt;BR /&gt;
Need to easily Navigate to your Custom Content Folders?&lt;BR /&gt;
Need Autolayering for Dimensions without going through Design Center?&lt;BR /&gt;
Download the ADT Tools for ADT 2 &amp;amp; 3 at&lt;BR /&gt;
http://www.cadbazaar.com</description>
      <pubDate>Wed, 17 Sep 2003 13:08:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309139#M60739</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-17T13:08:38Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309140#M60740</link>
      <description>Cool! But I would still bring it up to your boss. If he isn't spending &lt;BR /&gt;
any money and both clients &amp;amp; repro house don't need to spend money, your &lt;BR /&gt;
boss can make it happen. Not bringing new inventive ideas to the table &lt;BR /&gt;
doesn't take your personal career far.&lt;BR /&gt;
___________________________&lt;BR /&gt;
Mike Tuersley&lt;BR /&gt;
AutoCAD Clinic&lt;BR /&gt;
Rand IMAGINiT Technologies</description>
      <pubDate>Thu, 18 Sep 2003 05:48:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309140#M60740</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-18T05:48:27Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309141#M60741</link>
      <description>for someone who does not have Adobe Acrobat but only the reader.&lt;BR /&gt;
How can I write code to join PDF files ?&lt;BR /&gt;
Is there any other options ?</description>
      <pubDate>Thu, 18 Sep 2003 11:08:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309141#M60741</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-18T11:08:44Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309142#M60742</link>
      <description>Per your suggestion  &lt;BR /&gt;
I checked with our repro company and they charge 5$ pper dwf file to&lt;BR /&gt;
convert to tiff or PDF or PLT before they can print it, and it is the&lt;BR /&gt;
same with both the major print houses in town.. (there are some other&lt;BR /&gt;
small ones they do not handle those at all.) I think at that point it&lt;BR /&gt;
would be cheaper to invest in a PDF driver.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Mike Tuersley wrote:&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Cool! But I would still bring it up to your boss. If he isn't spending&lt;BR /&gt;
&amp;gt; any money and both clients &amp;amp; repro house don't need to spend money, your&lt;BR /&gt;
&amp;gt; boss can make it happen. Not bringing new inventive ideas to the table&lt;BR /&gt;
&amp;gt; doesn't take your personal career far.&lt;BR /&gt;
&amp;gt; ___________________________&lt;BR /&gt;
&amp;gt; Mike Tuersley&lt;BR /&gt;
&amp;gt; AutoCAD Clinic&lt;BR /&gt;
&amp;gt; Rand IMAGINiT Technologies&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
&lt;BR /&gt;
-------------------&lt;BR /&gt;
Nauman M&lt;BR /&gt;
CAD Bazaar&lt;BR /&gt;
*********NEW*********&lt;BR /&gt;
Add AEC Objects to the Layers(lkey) you want, not the Layers ADT Wants!!&lt;BR /&gt;
Add a Wall directly on the DEMO Layerkey, instead of switching it later.&lt;BR /&gt;
Download the eval at http://www.cadbazaar.com&lt;BR /&gt;
*********NEW*********&lt;BR /&gt;
Need to easily Navigate to your Custom Content Folders?&lt;BR /&gt;
Need Autolayering for Dimensions without going through Design Center?&lt;BR /&gt;
Download the ADT Tools for ADT 2 &amp;amp; 3 at&lt;BR /&gt;
http://www.cadbazaar.com</description>
      <pubDate>Mon, 22 Sep 2003 12:23:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309142#M60742</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-22T12:23:49Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309143#M60743</link>
      <description>Nauman&lt;BR /&gt;
&lt;BR /&gt;
We use the two subs below to programmatically name the PDFs with the Win2PDF&lt;BR /&gt;
printer.  Per the documentation, you would save the name in a registry&lt;BR /&gt;
container (see BeforePDF sub) just before plotting.  After plotting, you&lt;BR /&gt;
would clear (see AfterPDF sub).&lt;BR /&gt;
&lt;BR /&gt;
We looked at using dwfs, but we also needed to combine PDFs from Excel, Word&lt;BR /&gt;
and AutoCAD into one multi-page PDF.  This has been clean and simple.&lt;BR /&gt;
&lt;BR /&gt;
Keep me posted.&lt;BR /&gt;
&lt;BR /&gt;
Chris&lt;BR /&gt;
&lt;BR /&gt;
'plot&lt;BR /&gt;
BeforePDF strPDFName&lt;BR /&gt;
MyPlotRoutine 'Plot stuff here&lt;BR /&gt;
AfterPDF&lt;BR /&gt;
&lt;BR /&gt;
Private Sub BeforePDF(strName As String)&lt;BR /&gt;
    SaveSetting "Dane Prairie Systems", "Win2PDF", "PDFFileName", strName &amp;amp;&lt;BR /&gt;
".pdf"&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
Private Sub AfterPDF()&lt;BR /&gt;
    On Error Resume Next&lt;BR /&gt;
    DeleteSetting "Dane Prairie Systems", "Win2PDF", "PDFFileName"&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
"Nauman M" &lt;CADOLOGISTNOSPAM&gt; wrote in message&lt;BR /&gt;
news:3F6866C2.DCEB0BF4@CadBazaarNoSPAM.com...&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; do you mind sharing how you use it, I am trying to figure out a solution&lt;BR /&gt;
&amp;gt; for our company and they were thinking in buying pushbutton, but it is&lt;BR /&gt;
&amp;gt; expensive.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Chris Picklesimer wrote:&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; If you are already creating the separate PDfs and you are able to save&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; &amp;gt; full path names in an array, you can pass that array and the "combined&lt;BR /&gt;
file&lt;BR /&gt;
&amp;gt; &amp;gt; name" to the following sub(This requires you to reference the Adobe&lt;BR /&gt;
Acrobat&lt;BR /&gt;
&amp;gt; &amp;gt; 5.0 Type Library.):&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; btw, We use Win2PDF printer from daneprairie.com to programmatically&lt;BR /&gt;
create&lt;BR /&gt;
&amp;gt; &amp;gt; the single PDF files.  It's easy to name the files through VB code and&lt;BR /&gt;
it is&lt;BR /&gt;
&amp;gt; &amp;gt; only $30.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;/CADOLOGISTNOSPAM&gt;</description>
      <pubDate>Mon, 22 Sep 2003 13:00:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309143#M60743</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-22T13:00:24Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309144#M60744</link>
      <description>&lt;DIV&gt;&lt;FONT face="Arial" size="2"&gt;Although there are a handful of ways to &lt;BR /&gt;
create,&amp;nbsp; Adobe Acrobat 5.0 would be needed to join all PDFs into &lt;BR /&gt;
one.&lt;/FONT&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px"&amp;gt;&lt;BR /&gt;
  &lt;DIV&gt;"Mal" &amp;lt;&lt;A href="mailto:mfernandes@stantec"&gt;mfernandes@stantec&lt;/A&gt;&amp;gt; &lt;BR /&gt;
  wrote in message &lt;A&gt;&lt;BR /&gt;
  href="news:f1897ba.9@WebX.maYIadrTaRb"&amp;gt;news:f1897ba.9@WebX.maYIadrTaRb&lt;/A&gt;...&lt;/DIV&gt;for &lt;BR /&gt;
  someone who does not have Adobe Acrobat but only the reader. &lt;BR /&gt;How can I &lt;BR /&gt;
  write code to join PDF files ? &lt;BR /&gt;Is there any other options &lt;BR /&gt;
?&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 22 Sep 2003 13:06:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309144#M60744</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-22T13:06:20Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309145#M60745</link>
      <description>For anyone who is interested&lt;BR /&gt;
Gostscript will allow you to do do this.&lt;BR /&gt;
i.e. convert from ps to pdf and although it is not documented I have found out that you can also join pdf files.&lt;BR /&gt;
&lt;BR /&gt;
At the command prompt for converting ps to pdf enter a string of file names instead of just one filename.</description>
      <pubDate>Fri, 26 Sep 2003 13:53:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pdf-multi-sheet/m-p/309145#M60745</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2003-09-26T13:53:50Z</dc:date>
    </item>
  </channel>
</rss>

