Click here to Skip to main content
15,891,647 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I'm facing problem with unwanted page breaks between two text boxes in my SSRS report. first testbox contains sub header(left-aligned), "Summary". second text box contains comments. maximum limit is 10000 characters.
When I googeld, I found the below calcualtions to consider. I corrected the values to satisfy the conditions. Still I'm facing problem. Please suggest me to fix this issue. Thanks in advance.

Note: text length in comments textbox is 5200 charcters.

Page.Height >= Page.TopMargin
+ ReportHeader.Height (no header)
+ ReportBody.Height
+ ReportFooter.Height (no footer)
+ Page.BottomMargin
My page values 24>=1 + 20.57513 + 1

Page.Width >= Page.LeftMargin + ReportBody.Width + Page.RightMargin
My page values 15 >= 0.5 + 12.76427 + 0.5

I set property, "ConsumeContainerWhitespace" value to True
Posted

1 solution

It worked by Changing the property of textbox. Property:"KeepTogether", Value:False.
It shown the paragraphs in pdf file as desired without any blank area.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900