Rdlc pdf report is not displayed.

I have a single rdlc report and is displayed on a web page using the Microsoft Reportviewer control. This report contains several tables for displaying records. When I export this report to PDF, the text in one table is displayed on top of the other table texts (texts behind other texts). Are there any settings for the table to display it under another? Any help would be greatly appreciated.

+2


source to share


3 answers


I had a similar case and found out that there was an overlapping control associated in my report, I was given a hint in the result window after compilation, it was something like this:

ContratoOnline.rdlc: warning rsOverlappingReportItems: Los objetos 'Line17 de tipo line y' textbox54 de tipo textbox se superponen. no todos los Representadores admiten la superposición de elementos de Informe.



After the fix, I can generate a PDF report without any problem. Hope it helps.

+2


source


It was exotic of mine with Microsoft's report renderers (both report viewer and Reporting Services) that only the simplest layouts will render correctly in all supported formats.

Tweaking the report gets you up to about 90% or 95%, but you will find that you cannot resolve certain display inconsistencies by setting the report design.



A workaround is to have different report definitions (RDLC files) for each output format you need to support.

+1


source


Make sure tables or other controls do not overlap in your report project. The behavior is sometimes caused by overlapping controls.

+1


source







All Articles