How to show the same image in one place on every page of an RDLC 2010 report

I am compiling an RDLC report in Visual Studio 2010.

I need to display the same image at the same location on every generated page.

The image is a background image and must be covered by one table on the same page. If the table is to be spread over many pages, the image must be repeated on each page at the same location relative to the page.

I tried to put the image in the background part of the page, but then the image is stretched or repeated like a tile. The only options available in my case for repeating the background image are Default, Repeat, RepeatX, RepeatY, or Clip.

What could be the best solution to my problem.

+3


source to share


1 answer


It looks like the only workable solution for me was to create an image on A4 paper and place the entire image as the background bitmap of the page template with the Repeat parameter set to Clip. Hopefully there will be better solutions then, but so far this is the only one I've found.



+2


source







All Articles