<?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: Re: How to print individual sheets to separate PDFs with a script? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520518#M1134894</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the code, making progress.&amp;nbsp; Still a bit to go ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PrintReportPDF reportID, reportFile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also on my system the printer is named: "CutePDF Writer"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that bypassing the Save As is not working.&amp;nbsp; A Save As dialog window is appearing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe "1" should be something else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Oct 2013 15:38:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-10-24T15:38:29Z</dc:date>
    <item>
      <title>How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520509#M1134881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been working with script, for the first time, trying to print 20 separate sheets as PDFs in an automated way (or maybe to write one large PDF).&amp;nbsp; I have not (as yet) defined reports for these sheets.&amp;nbsp; At this time I just want to print them as sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. What is the script equivilent to menu: File, Print Sheet? (its not Print Report, PrintDocReport or PrintReportEx)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. If I decided to use doc1.PrintAllSheets, how can I pass in the name of the PDF printer and the PDF file name I wish to write to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brooks&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 13:55:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520509#M1134881</guid>
      <dc:creator />
      <dc:date>2013-10-24T13:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520510#M1134882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use a macro and the follwing script works for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub printRP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;ActiveDocument.GetApplication.WaitForIdle(1000)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; ActiveDocument.PrintReport "RP01", "PDF-XChange 3.0", false&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.PrintReport "RP02", "PDF-XChange 3.0", false&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.PrintReport "RP03", "PDF-XChange 3.0", false&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.PrintReport "RP04", "PDF-XChange 3.0", false&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gerrit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 14:32:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520510#M1134882</guid>
      <dc:creator />
      <dc:date>2013-10-24T14:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520511#M1134883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do you specify the PDF file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see PDF-XChange 3.0 in my printer list in QV ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 14:57:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520511#M1134883</guid>
      <dc:creator />
      <dc:date>2013-10-24T14:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520512#M1134884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to Install PDF printer, There are many PDF printers&lt;/P&gt;&lt;P&gt;CutePDF&lt;/P&gt;&lt;P&gt;Bullzipp&lt;/P&gt;&lt;P&gt;PDFCreator&lt;/P&gt;&lt;P&gt;PDF-XChange 3.0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:06:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520512#M1134884</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520513#M1134885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as I know &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; PDF-XChange 3.0&lt;/SPAN&gt; is installed out of the box together with QV.&lt;/P&gt;&lt;P&gt;However I am not the technical one here, and did not install QV.&lt;/P&gt;&lt;P&gt;Probably others may know where XChange 3.0 can be obtained.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gerrit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:07:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520513#M1134885</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520514#M1134886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I have CutePDF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the code in the script to specify the PDF file name?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:09:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520514#M1134886</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520515#M1134888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to create a macro.&lt;/P&gt;&lt;P&gt;In the following lines i Have 4 reports RP01, RP02, RP03 and RP04.&lt;/P&gt;&lt;P&gt;These are my report names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; Sub printRP&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;TABLE style="border: 0px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;TBODY style="font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;ActiveDocument.GetApplication.WaitForIdle(1000)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;&amp;nbsp; ActiveDocument.PrintReport "RP01", "PDF-XChange 3.0", false&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ActiveDocument.PrintReport "RP02", "PDF-XChange 3.0", false&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.PrintReport "RP03", "PDF-XChange 3.0", false&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.PrintReport "RP04", "PDF-XChange 3.0", false&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ActiveDocument.GetApplication.Sleep 10000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;End Sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Gerrit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:16:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520515#M1134888</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520516#M1134890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand that.&amp;nbsp; But where is it specified what folder to write to and what PDF file name to use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520516#M1134890</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520517#M1134892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub PrintReportPDFCreatorone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tempFolder = "C:\temp" &lt;/P&gt;&lt;P&gt;reportID = "RP01" &lt;/P&gt;&lt;P&gt;reportName = reportID&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the file name with path &lt;/P&gt;&lt;P&gt;reportFile = tempFolder &amp;amp; "\" &amp;amp; reportID &amp;amp; "_" &amp;amp; reportName &amp;amp; ".pdf" 'print the report &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;printReportPDF reportID, tempFolder 'Call the function 'Rename the report &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub printReportPDF (oReport, pdfLocation) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Set WSHShell = CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; WSHShell.RegWrite "HKEY_CURRENT_USER\Software\PDFCreator\OutputFile", pdfLocation&lt;/P&gt;&lt;P&gt;&amp;nbsp; WSHShell.RegWrite "HKEY_CURRENT_USER\Software\PDFCreator\BypassSaveAs", "1", "REG_SZ"&lt;/P&gt;&lt;P&gt;&amp;nbsp; msgbox("Before Print")&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.PrintReport oReport, "CutePDF",false &lt;/P&gt;&lt;P&gt;&amp;nbsp; set WSHShell = nothing &lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:19:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520517#M1134892</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520518#M1134894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the code, making progress.&amp;nbsp; Still a bit to go ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I changed to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PrintReportPDF reportID, reportFile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also on my system the printer is named: "CutePDF Writer"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that bypassing the Save As is not working.&amp;nbsp; A Save As dialog window is appearing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe "1" should be something else?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:38:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520518#M1134894</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520519#M1134895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be check Default CutePDF Printer Properties Setting on your machine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:49:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520519#M1134895</guid>
      <dc:creator />
      <dc:date>2013-10-24T15:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520520#M1134897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gerrit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the PDF-XChange 3.0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you run that code do you get 4 files: RP01.PDF, RP02.PDF, RP03.PDF, RP04.PDF?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brooks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 19:39:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520520#M1134897</guid>
      <dc:creator />
      <dc:date>2013-10-29T19:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520521#M1134899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brooks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can manipulate the file name in settings of the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt; PDF-XChange 3.0&lt;/SPAN&gt; printer&lt;/P&gt;&lt;P&gt;I use docname and time to make the file unique.&lt;/P&gt;&lt;P&gt;I then pick these files up with&amp;nbsp; a script (AutoIT) rename the files and send them out by mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="48332" alt="printer setting.jpg" class="jive-image" src="/legacyfs/online/48332_printer setting.jpg" style="width: 620px; height: 413px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gerrit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 08:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520521#M1134899</guid>
      <dc:creator />
      <dc:date>2013-10-30T08:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520522#M1134902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gerrit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the post.&amp;nbsp; I was making some progress yesterday with both PDF XChange and Bullzip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the way you do it, is docname always the same (the name of the QVW file)?&amp;nbsp; But you get separate files by the use of %time%?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you creating a different PDF file for each report you defined?&amp;nbsp; How do you decide how to rename the files later (ie. how do you use the time in the filename to rename it to the report title)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brooks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 12:12:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520522#M1134902</guid>
      <dc:creator />
      <dc:date>2013-10-30T12:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520523#M1134907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brooks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The name of the file is Qlikview Printing + time.&lt;/P&gt;&lt;P&gt;Indeed I create seperate files and they are unique because of the timepart in the filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use a scripttool AutoIT to rename the files&amp;nbsp; &lt;A href="http://www.autoitscript.com/site/autoit/" title="http://www.autoitscript.com/site/autoit/"&gt;AutoIt - AutoItScript&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Code there looks like this:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;$search = FileFindFirstFile("D:\Qlikviewdata\AutoQLIK\Qlikview Printing*.*")&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If $search = -1 Then Exit&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Local $file = FileFindNextFile($search)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If @error Then Exit&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FileCopy("D:\Qlikviewdata\AutoQLIK\"&amp;amp;$file, "D:\Qlikviewdata\AutoQLIK\MyNewFile.pdf")&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FileDelete("D:\Qlikviewdata\AutoQLIK\"&amp;amp;$file)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;etc.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I basically do is the following:&lt;/P&gt;&lt;P&gt;1. In my task scheduler I start at night an AutoIT script&lt;/P&gt;&lt;P&gt;2. In the script I start a qvw file with the /l option: "C:\Program Files\QlikView\qv.exe" /l "D:\Qlikviewdata\AutoQLIK\my.qvw"&lt;/P&gt;&lt;P&gt;3. In the onpostreload trigger of the document I start my macro (as shown a few posts earlier)&lt;/P&gt;&lt;P&gt;4 I loop throught the directory with the printfiles and rename the created printfiles&lt;/P&gt;&lt;P&gt;5. I send the renamed files out by email.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gerrit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Oct 2013 13:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520523#M1134907</guid>
      <dc:creator />
      <dc:date>2013-10-30T13:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to print individual sheets to separate PDFs with a script?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520524#M1134910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dewang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even when I use your code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; WSHShell.RegWrite "HKEY_CURRENT_USER\Software\PDFCreator\OutputFile", pdfLocation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; WSHShell.RegWrite "HKEY_CURRENT_USER\Software\PDFCreator\BypassSaveAs", "1", "REG_SZ"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pdflocation = c:\temp&lt;/P&gt;&lt;P&gt;reportFile = tempFolder &amp;amp; "\" &amp;amp; "040" &amp;amp; ".pdf" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qlikview allways creates the file in the directory c:\users\bumin\desktop and&lt;/P&gt;&lt;P&gt;the finename = Qlikview Printing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;Bumin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 17:37:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-print-individual-sheets-to-separate-PDFs-with-a-script/m-p/520524#M1134910</guid>
      <dc:creator>bumin</dc:creator>
      <dc:date>2013-12-30T17:37:17Z</dc:date>
    </item>
  </channel>
</rss>

