Showing RDLC header only one time

前端 未结 4 880
轮回少年
轮回少年 2021-01-24 01:13

Normally in RDLC reports, if you use a header it will be repeated on every page.

What\'s the solution if I only want to show the header on the first page and not the res

4条回答
  •  猫巷女王i
    2021-01-24 01:23

    I am assuming that your page header contains a textbox along with an image. The best thing that you can do is to 1.) Minimize the height of Page header(containing image and textbox) as small as you want to.

    2.) Set the image size property to Original Size.

    3.) Set the textbox size property sizing option to "Allow height Increase".

    4.) Set the textbox font size property as =IIf(Globals!PageNumber <> 1 , "0pt", "12pt")

    5.) Set the textbox and image visibility property to "=(Globals!PageNumber <> 1)" this will hide your text and image on all other pages except page1.

    Step 4 is optional. All the Best

提交回复
热议问题