I am printing .rdlc reports with the Microsoft.Reporting.WinForms.LocalReport and the Render method to EMF format. Some reports have filters on data sources. Sometimes these filters return no rows. In this case, still a blank page is being created and printed. I am looking for a way to detect (in case a report has just one page) if that page is actually blank or contains and data. If it is blank, I would not initiate the printing using PrintDocument afterwards. Anyone got any idea? Could I use GDI or another way to check if the streams or EMF generated actually is blank?
I am using Reporting Services Version 2005 with visual studio 2005 and custom object data sources. I am using this code to generate the output now:
'Rendering ausführen
oSbGeraeteInfo = New StringBuilder
Select Case eReportRenderingFormat
Case ReportRenderingFormats.Image
With oSbGeraeteInfo 'http://technet.microsoft.com/de-de/library/ms156281.aspx und http://technet.microsoft.com/de-de/library/ms155373.aspx
.AppendLine("<DeviceInfo>")
.AppendLine(" <OutputFormat>EMF</OutputFormat>")
.Append(" <PageWidth>").Append((Me.moReport.GetDefaultPageSettings.PaperSize.Width / 100).ToString).AppendLine("in</PageWidth>")
.Append(" <PageHeight>").Append((Me.moReport.GetDefaultPageSettings.PaperSize.Height / 100).ToString).AppendLine("in</PageHeight>")
.Append(" <MarginTop>").Append((Me.moReport.GetDefaultPageSettings.Margins.Top / 100).ToString).AppendLine("in</MarginTop>")
.Append(" <MarginLeft>").Append((Me.moReport.GetDefaultPageSettings.Margins.Left / 100).ToString).AppendLine("in</MarginLeft>")
.Append(" <MarginRight>").Append((Me.moReport.GetDefaultPageSettings.Margins.Right / 100).ToString).AppendLine("in</MarginRight>")
.Append(" <MarginBottom>").Append((Me.moReport.GetDefaultPageSettings.Margins.Bottom / 100).ToString).AppendLine("in</MarginBottom>")
.AppendLine("</DeviceInfo>")
End With
Me.moReportStreams = New List(Of Stream)
With Me.moReport
RemoveHandler .SubreportProcessing, AddressOf mLocalReport_SubreportProcessing
AddHandler .SubreportProcessing, AddressOf mLocalReport_SubreportProcessing
.Render("Image", oSbGeraeteInfo.ToString, AddressOf mErzeugeStream, aoWarnungen)
End With
For Each oStream In Me.moReportStreams
oStream.Position = 0
Next
End Select