Finding report page after generating report

I am joining many TfrxReports using this technique found in FR documentation:
  frxReport1.LoadFromFile('d:\fr1.fr3');
  frxReport1.PrepareReport(True);
  frxReport1.LoadFromFile('d:\fr2.fr3');
  frxReport1.PrepareReport(False);
  frxReport1.LoadFromFile('d:\fr3.fr3');
  frxReport1.PrepareReport(False);
  frxReport1.Preview := frxPreview1;

Then is it possible to switch between first pages of 01.fr3, 02.fr3 or 03.fr3 on frxPreview1?

Comments

Leave a Comment