Here's exactly the functionality I'm looking for, but written in C#.. http://www.dotnetspider.com/resources/3 ... brary.aspx
And since I'm not that # in coding C I'd like the C# code translated into something usable in C/AL
Hmmmm, no answer so far
I'm looking for a simple way to merge file1.pdf and file2.pdf into one file file3.pdf. I would prefer using iTextSharp but if anyone has another (better) solution...?
Comments
http://www.dotnetspider.com/resources/3 ... brary.aspx
And since I'm not that # in coding C
I'm looking for a simple way to merge file1.pdf and file2.pdf into one file file3.pdf. I would prefer using iTextSharp but if anyone has another (better) solution...?
CLEAR(ClientPDFTechDocument);
CLEAR(ClientPDFTechSignature);
ClientPDFTechSignature.SetLicense(<your license key here>);
ClientPDFTechDocument := ClientPDFTechDocument.PDFDocument(OutputFileName);
ClientPDFTechDocument.Pages.Delete(ClientPDFTechDocument.CurrentPage);
ClientPDFTechDocument.LoadPdf(<first PDF file path/name>,'');
ClientPDFTechDocument.LoadPdf(<second PDF file path/name>,'');
ClientPDFTechDocument.Save;
CLEAR(ClientPDFTechDocument);
http://www.epimatic.com
Thx for your reply, but I'd rather use iTextSharp than another 3. party product:-)