Category Archives: Print

DDE : FilePrint

An open display, and it does, and the print dialog box of PDF file is displayed. The following instruction is not executed as long as the print dialog box is not shut. Syntax [FilePrint(char* fullPath)] Argument fullPath[char*] The full path of the PDF file to be printed. Returns true The print succeeded. (Operation is unconfirmed.) false The document specified by fullPath is not opened. The print failed. Notes: The return value cannot be acquired with DDE of VBA of Excel. Sample: VBA of Excel The PDF document is opened. Please confirm the test by the step execution with F8 key. Sub DDE_FilePrint()    Dim lChanNo As Long      ‘DDE channel number    ‘A double … Continue reading DDE : FilePrint

DDE : DocPrint

It prints without doing the print range page in PDF file, presenting, and displaying the print dialog box. When printing, the size is changed to install on the printing area and it is printed.It doesn’t operate in Acrobat Reader. Syntax [DocPrint(char* fullPath, long startPage, long endPage)] Argument fullPath[char*] The full path of PDF file startPage[long] Print beginning page number.The beginning page : from 0. endPage[long] Print end page number.The end page : from 0. Returns true The print succeeded. false The document specified by fullPath is not opened.The print failed. Notes: The return value cannot be acquired with DDE of VBA of Excel. Sample: VBA of Excel The PDF document … Continue reading DDE : DocPrint