Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
m-wise
Partner - Contributor III
Partner - Contributor III

Cannot install Qlikview PDF on win2008 64bit

Hello,

I cannot install QvPDFSetup.exe on a 2008 64 bit server.
After I run it as administrator on the server it finishes without errors. But
it did not create a pdf printer.

Uninstall doesn't work. Reinstall finishes without errors.

Does anyone have a clue or an alternative?

thx

32 Replies
Not applicable

If you use the Bullzip PDF Printer and you use 64bit Windows, then this function works for printing the report to pdf:

function printReportPDF(reportId, pdfOutputPath) 

          ActiveDocument.PrintReport(reportId), "Bullzip PDF Printer", false

 

          ' If using a 32-bit system, comment the following line

          ' and uncomment the line after that.

          set obj = CreateObject("Bullzip.PdfSettings")

          'set obj = CreateObject("Bullzip.PDFPrinterSettings")

          obj.PrinterName = "Bullzip PDF Printer"

          obj.SetValue "Output" , pdfOutputPath

          obj.SetValue "ConfirmOverwrite", "no"

          obj.SetValue "ShowSaveAS", "never"

          obj.SetValue "ShowSettings", "never"

          obj.SetValue "ShowPDF", "no"

          obj.SetValue "RememberLastFileName", "no"

          obj.SetValue "RememberLastFolderName", "no"

          obj.SetValue "ShowProgressFinished", "no"

          obj.SetValue "ShowProgress", "no"

          obj.WriteSettings True

end function

Not applicable

Hi Marcel,

This works well, but is there anything I can do in the the macro to save and exit the PDFExchange application after the macro runs, as I would like to automate the process and send an email of the PDF once it has exported.

Thanks

Not applicable

Hello,

I tested the bullzip macro on my computer and it works so fine!

But, when I installed the same version on server, the pdf file has come with a message: "TRIAL MODE − a valid license will remove this message. See the keywords property of this PDF for more information".

How can I solve it?

Thank you.