Two page in one
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,
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