visual studio 2013 - Suppress rsOverlappingReportItems warning in RDLC files -


is there way suppress such warnings? either single file or whole project.

the message comes out this:

warning x   text box ‘’ , text box ‘’ overlap. overlapping report items not supported in renderers. 

please check positions (top, left) , sizes (width, height) properties , adjust properties fix warnings.

example:

textbox1 => left = 1in, width = 2in textbox2 => left = 2.8in, width = 5in  //overlapping 

fix:

textbox2 => left = textbox1.left + textbox1.width + <small space> textbox2 => left = 1in           + 2in            + 0.00200in     //fix 

i did , build warnings gone. may useful.


Comments

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -

Nuget pack csproj using nuspec -