RTF on odd pages
I would like to print a RTF file on the back of every odd page. The RTF
file will be the only thing to print on the page. I created a group header
and have the following code:
if Odd(Report.AbsolutePageNo) then
GroupHeaderBand2.Visible := False
else
GroupHeaderBand2.Visible := True;
Everything prints out fine, but my detail does not advance to the next
record. I can't seem to figure out how to do this. Anyone have any
suggestions.
Thanks,
Nick
file will be the only thing to print on the page. I created a group header
and have the following code:
if Odd(Report.AbsolutePageNo) then
GroupHeaderBand2.Visible := False
else
GroupHeaderBand2.Visible := True;
Everything prints out fine, but my detail does not advance to the next
record. I can't seem to figure out how to do this. Anyone have any
suggestions.
Thanks,
Nick
This discussion has been closed.
Comments
Which even do you have this code in? If you remove this event code, does
the report traverse your data correctly? Be sure you have your report
connected to the proper datapipeline to ensure your data is traversed.
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
the problem. Thanks for you quick response.
Nick