More endless height trouble
The last time I had trouble with endless height I rearranged the report so it had a subreport and that fixed the issue.
But now I have a series of reports that I run consecutively. It's the results from a race. So the first report is a listing of the racers and their laps and race time.
The second report that is appended to the first report is a listing of their individual lap times.
Then the 3rd report is a overall standings for the event.
This all works perfect.....on paper.
But now I'd like to make an endless height JPG. If I export to JPG I get page breaks which I do not want.
I tried after each ->LoadFromFile() I called
((TfrxReportPage *)ReportPrintResults->FindObject("Page1"))->EndlessHeight = true;
This just creates a damaged report (see attached). The 2nd report is just cut off and the 3rd is a separate JPG.
What is the best way to generate the same report, but with endless height = true?
Thanks!
But now I have a series of reports that I run consecutively. It's the results from a race. So the first report is a listing of the racers and their laps and race time.
The second report that is appended to the first report is a listing of their individual lap times.
Then the 3rd report is a overall standings for the event.
This all works perfect.....on paper.
But now I'd like to make an endless height JPG. If I export to JPG I get page breaks which I do not want.
I tried after each ->LoadFromFile() I called
((TfrxReportPage *)ReportPrintResults->FindObject("Page1"))->EndlessHeight = true;
This just creates a damaged report (see attached). The 2nd report is just cut off and the 3rd is a separate JPG.
What is the best way to generate the same report, but with endless height = true?
Thanks!
Comments