【问题标题】:Suppress rsOverlappingReportItems warning in RDLC files抑制 RDLC 文件中的 rsOverlappingReportItems 警告
【发布时间】:2015-07-23 13:06:23
【问题描述】:
有没有办法抑制此类警告?它可以是单个文件,也可以是整个项目。
消息是这样出来的:
Warning X The text box ‘’ and the text box ‘’ overlap. Overlapping report items are not supported in all renderers.
【问题讨论】:
标签:
visual-studio-2013
reporting-services
sql-server-2012
ssrs-2012
【解决方案1】:
请检查 Positions (Top, Left) 和 Sizes (Width, Height) 属性并调整这些属性来修复此警告。
示例:
Textbox1 => Left = 1in, Width = 2in
Textbox2 => Left = 2.8in, Width = 5in //overlapping
修复:
Textbox2 => Left = Textbox1.Left + Textbox1.Width + <Small Space>
Textbox2 => Left = 1in + 2in + 0.00200in //Fix
我做到了,构建警告消失了。这可能很有用。