Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

RTF on odd pages

edited July 2004 in General
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

Comments

  • edited July 2004
    Hi Nick,

    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.

    --
    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited July 2004
    Sorry. The report was working right. It was another issue that was causing
    the problem. Thanks for you quick response.

    Nick

This discussion has been closed.