Hello support,
with this lines the result PDF are the number of pages correct but the content of the second PDF is missing.
C/C++TdxPDFDocument* doc = new TdxPDFDocument();
try {
doc->LoadFromFile("Weinkarte.pdf");
doc->BeginUpdate();
try {
doc->Append("Getraenke.pdf");
} __finally {
doc->EndUpdate();
}
doc->SaveToFile("WeinGetraenke.pdf");
} __finally {
delete doc;
}
Thanks
Thomas