Visual studio 2013 抑制RDLC文件中的rsOverlappingReportItems警告

Visual studio 2013 抑制RDLC文件中的rsOverlappingReportItems警告,visual-studio-2013,reporting-services,sql-server-2012,ssrs-2012,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. 请检查位置(顶部、左侧)和大小(宽度、高度)属性,并调整这些属性以修复此警告 示例: Textbox1 => Left = 1in, Width = 2in Textbox2 =>

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

信息如下:

Warning X   The text box ‘’ and the text box ‘’ overlap. Overlapping report items are not supported in all renderers.
请检查位置(顶部、左侧)和大小(宽度、高度)属性,并调整这些属性以修复此警告

示例:

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
修复:

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
Textbox2=>Left=Textbox1.Left+Textbox1.Width+
Textbox2=>Left=1in+2in+0.00200in//Fix
我这样做了,构建警告消失了。这可能很有用。

重复: