![]() |
AcroPDF print in reverse order
Hi,
I use AcroPDF.dll : AcroPDF.printAll; Now I want to print in reverse order. I could use the function AcroPDF.printPages (LastPage, FirstPage). How can I get the total number of pages in the PDF document? (lastPage?). ![]() This Counts the total number of pages of pdf file. Unfortunately the call to the DLL returns always -1. The code of dll is: ![]() The code is not compatible with Delphi 2010. Is there another way to print in reverse order? Thanks. |
Re: AcroPDF print in reverse order
Try PAnsiChar instead of PChar in the call
|
Re: AcroPDF print in reverse order
Zitat:
Delphi-Quellcode:
to
function GetPdfPageCount(filename: pchar): integer; stdcall; external 'PdfPageCount.dll';
Delphi-Quellcode:
and call:
function GetPdfPageCount(filename: PAnsiChar): integer; stdcall; external 'PdfPageCount.dll';
Delphi-Quellcode:
..GetPdfPageCount(PAnsiChar('C:\Progetti\Totem\file.pdf'))...
and now it works perfectly. Really simple (stupid me). Thanks |
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:31 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz