Finding report page after generating report
I am joining many TfrxReports using this technique found in FR documentation:
Then is it possible to switch between first pages of 01.fr3, 02.fr3 or 03.fr3 on frxPreview1?
  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
One of topics that you may find usefull is
http://www.fast-report.com/en/forum/index....hl=previewpages
where Gpi showed the solution of manipulating those pages.
Mick