Does anybody have experience with Foxit ActiveX SDK pro in Excel VBA?
I would like to print a PDF silent using Foxit ActiveX SDK pro but I can not even open the PDF.
Can somebody please help?
The code I have for now is this, but it does not work:
Sub Test_Foxit_Print()
Dim s As String
Dim sCmd As String
Dim PDFPrinter As FoxitPDFSDKProLib.PDFPrinter
Dim sPDFfile As String
Set PDFPrinter = CreateObject("FoxitPDFSDKProLib.PDFPrinter")
sPDFfile = "C:\Users\frank\Documents\PDF files\Test Frank.pdf"
Call PDFPrinter.printWhat(0, sPDFfile)
Call PDFPrinter.PrintQuiet(sPDFfile)
End Sub