Thanks Terry, I guessed it would involve coding the onFormat event.
The "fly in the ointment" unfortunately is this: the reports (and forms and
queries) are delivered to the user as an mde, and changes to the sections
require the report to be in design view at the time of change. I currently
have the t&c info in the report footer and the rest of the stuff in page
header/footer, detail and groupheader/footer; ideally I wanted to just hide
and show whole sections at runtime, but I can't do that with an mde.
It may be that they have to settle with what they have got (they are
internal customers so won't complain too much!) but if you or anyone else has
any ideas around this then please let me know.
TerryC said:
In the "on format" event for the report section something like: (this is off
the top of my head - untested)
if [page] mod 2 = 0 then
me.[terms control name].visible = true
else
me.[terms control name].visible = false
end if
Should display the terms and conditions control on even pages only.
Substitute the "terms control name" with the name of your control that has
the terms and conditions text.
Simon Dobby said:
I have a duplexing report that currently shows order details (on one or more
pages) then prints a page of "terms and conditions" on the last page.
However, the customer now requires the terms and conditions on the reverse
side of *every* page.
Can anyone please tell me how this can be achieved?
(The report currently has an active page-header, section-header and
page-footer)