在RDLC文件中抑制rsOverlappingReportItems警告

时间:2015-07-23 13:06:24

标签: visual-studio-2013 reporting-services sql-server-2012 ssrs-2012

有没有办法抑制这种警告?它可以是单个文件,也可以是整个项目。

消息如下:

Warning X   The text box ‘’ and the text box ‘’ overlap. Overlapping report items are not supported in all renderers.

1 个答案:

答案 0 :(得分:0)

请检查位置(顶部,左侧尺寸(宽度,高度属性并进行调整那些修复此警告的属性。

示例:

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

我做到了,构建警告消失了。这可能很有用。