<?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: Save as PDF in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540161#M480997</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try NPrinting ? You may check for this in the QlikMart section.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 15 Mar 2014 17:29:42 GMT</pubDate>
    <dc:creator>nagaiank</dc:creator>
    <dc:date>2014-03-15T17:29:42Z</dc:date>
    <item>
      <title>Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540153#M480989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any solution to save dashboard as a PDF?&lt;/P&gt;&lt;P&gt;I know we can create report for it but i dont want to use this just because we have container in our dashboard and there are no option to display container as it is,and list box also not show as display in dashboard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 06:32:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540153#M480989</guid>
      <dc:creator />
      <dc:date>2013-10-29T06:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540154#M480990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to use this macro code&lt;/P&gt;&lt;P&gt;'' Create instance of PDFcreatore&lt;/P&gt;&lt;P&gt;'Set PDFCreator = CreateObject("PDFCreator.clsPDFCreator")&lt;/P&gt;&lt;P&gt;' &lt;/P&gt;&lt;P&gt;'PDFCreator.cOption("UseAutosave") = 1 // Enable autosave&lt;/P&gt;&lt;P&gt;'PDFCreator.cOption("UseAutosaveDirectory") = 1 // Use a specific save directory&lt;/P&gt;&lt;P&gt;'PDFCreator.cOption("AutosaveDirectory") = ActiveDocument.getVariable("TempPath").GetContent.String // Set autosave directory&lt;/P&gt;&lt;P&gt;'PDFCreator.cOption("AutosaveFormat") = 0 // Use PDF file type (.PDF extension)&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;'PDFCreator.cOption("AutosaveFilename") = "My PDF" // set the filename, optionally you can get the Caption of the object and use it as Filename&lt;/P&gt;&lt;P&gt;' &lt;/P&gt;&lt;P&gt;'PDFCreator.cPrinterStop = FALSE&lt;/P&gt;&lt;P&gt;' &lt;/P&gt;&lt;P&gt;'// Export to PDF File&lt;/P&gt;&lt;P&gt;'ActiveDocument.PrintDocReport ReportID, "PDFCreator"&lt;/P&gt;&lt;P&gt;sub printRP01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;printReportPDF "E:\Testing.pdf"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetApplication.Sleep 2000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.PrintReport "RP02", "QlikviewPDF"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.GetApplication.Sleep 10000&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;'===========================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function printReportPDF(pdfOutputFile)&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;&lt;/P&gt;&lt;P&gt;WSHShell.RegWrite "HKCU\Software\QlikviewPDF\OutputFile", pdfOutputFile, "REG_SZ"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WSHShell.RegWrite "HKCU\Software\QlikviewPDF\BypassSaveAs", "1", "REG_SZ"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set WSHShell = nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 06:36:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540154#M480990</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-10-29T06:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540155#M480991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;Mohit in your Macro Report is calling but i dont want to create it&lt;/P&gt;&lt;P&gt;**ActiveDocument.PrintReport "RP02"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Oct 2013 07:11:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540155#M480991</guid>
      <dc:creator />
      <dc:date>2013-10-29T07:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540156#M480992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the first part of your macro is marked as a comment.&lt;/P&gt;&lt;P&gt;Does the macro start with "sub printRP01"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;Bumin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Dec 2013 16:33:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540156#M480992</guid>
      <dc:creator>bumin</dc:creator>
      <dc:date>2013-12-28T16:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540157#M480993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333;"&gt;Hi, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333;"&gt;Using code to deal with the PDF saving projects is too complicated for me. I wonder why not &lt;A href="http://www.yiigo.com/guides/vbnet/how-to-start-pdf.shtml"&gt;&lt;SPAN style="color: #333333;"&gt;generate PDF files&lt;/SPAN&gt;&lt;/A&gt; directly using some 3rd party PDF processors? Or you can convert other formats to PDF files as well. Btw, do you have any good suugestion about the relevant &lt;A href="http://www.yiigo.com/guides/vbnet/how-to-process-pdf.shtml"&gt;&lt;SPAN style="color: #333333;"&gt;PDF toolkits&lt;/SPAN&gt;&lt;/A&gt;? I want to look for a fine one which is totally manual and can be customized by users according to our own favors. Any suggestion will be appreciated. Thanks in advance.&lt;/SPAN&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;SPAN style="color: #333333;"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333;"&gt;Arron&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 04:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540157#M480993</guid>
      <dc:creator />
      <dc:date>2014-03-14T04:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540158#M480994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adeel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 04:36:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540158#M480994</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-03-14T04:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540159#M480995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to install free pdf printer in server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 04:39:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540159#M480995</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2014-03-14T04:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540160#M480996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;First you need to install PDF writer and set it as your default printer. after that craete one button and put one action Print.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 06:30:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540160#M480996</guid>
      <dc:creator>jsingh71</dc:creator>
      <dc:date>2014-03-14T06:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540161#M480997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you try NPrinting ? You may check for this in the QlikMart section.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2014 17:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540161#M480997</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2014-03-15T17:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Save as PDF</title>
      <link>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540162#M480998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Hi there&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;n modern enterprise's document management system, people often need to process and handle large volumes of multi-page PDF document files. Therefore, a professional PDF document page processing utility will bring much convenience for users to manipulate and manage those PDF files, especially when they are processing some PDF document files that have over 500+ pages.So ,you can try to some PDF program which supports to &lt;A href="http://www.rasteredge.com/how-to/csharp-imaging/pdf-get-to-start/"&gt;&lt;SPAN style="color: #000000;"&gt;save PDF&lt;/SPAN&gt;&lt;/A&gt; or convert PDF files to help you out&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 06:36:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Save-as-PDF/m-p/540162#M480998</guid>
      <dc:creator />
      <dc:date>2014-03-24T06:36:18Z</dc:date>
    </item>
  </channel>
</rss>

