如何制作 RDLC 固定位置页脚
我的应用程序是打印支票。在客户的纸材中,“支票”本身位于 8.5x11 英寸纸张的底部 3 个位置。支票的详细信息位于表格的顶部 2/3。
现在,如果我一次打印多张支票,我需要支票本质上是我的 .rdlc 的页脚,但该页脚必须从每一页上完全相同的垂直位置开始,无论有多少详细信息项目上2/3。
这是如何通过 RDLC 报告实现的?当检查位于页面顶部 2/3 时,我可以轻松解决问题,因为表格不会影响其定位。这个把我难住了。
如果有帮助的话,我正在使用 SQL Server 2008。
My application is printing checks. In the client's paper stock, the "check" itself is at the bottom 3rd of an 8.5x11in sheet. The details that make up the check are on the top 2/3 of the sheet.
Now if I'm printing multiple checks in one go, I need the check to be essentially the page footer for my .rdlc, but that page footer must start at exactly the same vertical position on every page regardless of how many detail items are on the upper 2/3.
How is this accomplished with RDLC reports? I can easily solve the problem when the check is on the top 2/3 of the page because the table does not affect it's positioning. This one has me stumped.
If it helps, I am on SQL Server 2008.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了。基本上可以在 RDLC 中使用页脚选项(而不是表格页脚)并放置 ReportItems!里面有公式。这对于我需要做的事情来说效果很好。
Figured it out. Basically could use the page footer option (instead of table footer) in RDLC and put ReportItems! formulas in there. That worked fine for what I needed to do.