-1
I need the following process to be able to join some PDF files.
procedure Tservermain.reportmaster_relatorioReports(Sender: TObject);
begin
with reportmaster_relatorio.Reports do
begin
Add(RelatorioCapa.QuickRep1);
Add(RelatorioInfo.QuickRep1);
Add(RelatorioConclusao.QuickRep1);
end;
end;
Currently it joins the various pages and creates this report, but now I need it to add 2 more PDF sheets.
Thank you!
PS: I’ve been testing this way:
Add(Caminho + '\PDF\' + 'Doc1.pdf');
And gave the following error: E2010 Incompatible types: 'Pointer' and 'Shortstring'
which libraries/technologies you are using to generate this PDF, this would be the generation of a report?
– Erick Luz