How to force a textbox to split, rather than move to a second page in SSRS 2005 (PDF Export)?

南笙酒味 提交于 2019-12-06 02:47:22

This is pretty standard behaviour in SSRS. Like many issues with the Reporting engine, you have to trick it.

In this case you could try to provide the 'lines' for the second text box as individual rows in a Detail, then use a repeater or table to display them. Alternatively you could break on 'paragraph'. Unfortunately you'll have to do this in your data source, probably in a stored procedure, depending on how you're getting the data to the report.

If appropriate you could look at client-side reporting (.rdlc files), which allows you to pre-process the data in a .NET application, although setting up for printing can be more complex.

Joanna

I'm not sure about v.2005 but in v.2008 you can set a textbox property: KeepTogether to false.

This will fit as much text on the first page than the rest on the second page.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!