Two page in one

edited 1:00AM in FastReport 4.0
Hello All,

I would like to print two A5 report to one A4 page.
Is it possoble?
FastReport 4 with C++Builder Xe2

I was trying this way:

TfrxReport *report;
report = new TfrxReport(this);
report->LoadFromFile("report1.fr3");
report->PrepareReport(true);

report->LoadFromFile("report2.fr3");
report->PrepareReport(true);

report->ShowPreparedReport();

Unfortunately, this is not good.
Only the second report will appear.

any idea?

thanks,

Comments

  • gpigpi
    edited 1:00AM
    Use TfrxReport.PrintOptions.PrintMode = pmJoin and set TfrxReport.PrintOptions.PrintOnSheet

Leave a Comment