ACCESS said:
I need to place an object on a report containing Sub Reports. How do I add a
static - absolute position for each page as the sub reports grow to 100s of
pages?
Not at all sure what you are trying to do here, but here's
some thoughts that may provide some ideas.
As you've probably already figured out, subreport do not
process the Page event nor their Page header/footer section.
You can use the main report's Page event to draw
lines/circles and print text anywhere on the page.
If you're trying to display a watermark type image at a
fixed location on the page, you can use the main report's
Page header section to display the image. Make the page
header as tall as needed to display the image and add a line
of code to the Page Header section's Format event:
Me.MoveLayout = False
to allow the rest of the main report (including any
subreports) to print data on top of the image.
If I've completely misunderstood your question, please
provide more information about what you're trying to do.