vote up 4 vote down star
4

I have a SQLServer 2005 Reporting Services ServerReport deployed and frequently used by my Winforms app (Framework 2.0) via the ReportViewer control.

What I need is to provide a one-click print button from one of the forms of the app that triggers only the print dialog, without bringing up the ReportViewer.

I've been experimenting with rendering the report to a byte array, but I can't get pass that.

This report has multiple pages, so i don't know if the "Image" rendering that works for local reports it's going to work also for server reports.

I've been looking throw MSDN but there is only reference to local reports:

http://msdn.microsoft.com/en-us/library/ms252091(VS.80).aspx

And the little information that I can get on server side reports are using Web references to the ReportServer web service, and I don't want that.

http://blogs.msdn.com/bryanke/articles/71491.aspx

Is there any way to print a server report, using the print dialog, without showing the report viewer to the user (I don't mind if it's behind the scenes)?

flag

78% accept rate

3 Answers

vote up 4 vote down check

Ok, Finally figured out.

check this link: Printing Reporting Services 2005 Reports

That blog post has almost everything that I needed, but I'm going to post the full answer here for references.

I ended up using the report viewer object behind the scenes, but only for convenience, since it's not required.

The first step is asking the user for the printer settings:

Dim doc As New Printing.PrintDocument()
AddHandler doc.PrintPage, AddressOf PrintPageHandler
Dim dialog As New PrintDialog()
dialog.Document = doc
Dim print As DialogResult
print = dialog.ShowDialog()
doc.PrinterSettings = dialog.PrinterSettings

Having that, we proceed to configure our report call: Modifying this string, you can get to print on any paper size and any orientation (switching height and width for landscape), but the report itself must be configured in the same page layout.

Dim deviceInfo As String = _
"<DeviceInfo>" + _
"<OutputFormat>emf</OutputFormat>" + _
"  <PageWidth>8.5in</PageWidth>" + _
"  <PageHeight>11in</PageHeight>" + _
"  <MarginTop>0.25in</MarginTop>" + _
"  <MarginLeft>0.25in</MarginLeft>" + _
"  <MarginRight>0.25in</MarginRight>" + _
"  <MarginBottom>0.25in</MarginBottom>" + _
"</DeviceInfo>"

Dim warnings() As Warning
Dim streamids() As String
Dim mimeType, encoding, filenameExtension, path As String
mimeType = "" : encoding = "" : filenameExtension = ""

Finally, we render the report with all its pages.

Note that if the report has only one page, the renderStream method is never used.

rpt_control is the report viewer control, previously configured and aiming at a server report.

Note allso that in this code we add pages to a list. This list is a global variable, since it's needed in the PrintPageHandler method.

Dim data() As Byte
rpt_control.ServerReport.SetParameters(_parametros)
data = rpt_control.ServerReport.Render("Image", deviceInfo, mimeType, encoding, filenameExtension, streamids, warnings)
pages.Add(New Metafile(New MemoryStream(data)))

For Each pageName As String In streamids
    data = rpt_control.ServerReport.RenderStream("Image", pageName, deviceInfo, mimeType, encoding)
    pages.Add(New Metafile(New MemoryStream(data)))
Next
doc.Print()

Until now, we haven't done any printing at all, this is actually handled by the PrintPageHandler method that we referenced earlier.

Dim pages As New List(Of Metafile)
Dim pageIndex As Integer = 0
Private Sub PrintPageHandler(ByVal sender As Object, ByVal e As PrintPageEventArgs)
    Dim page As Metafile = pages(pageIndex)
    pageIndex += 1
    e.Graphics.DrawImage(page, 0, 0, page.Width, page.Height)
    e.HasMorePages = pageIndex < pages.Count
End Sub
link|flag
vote up 0 vote down

I see this sample, but don't know if it suits your needs: http://www.gotreportviewer.com/EMFPrint.zip

link|flag
Yes, that was pretty much the first hint I got, but note that this example is for local reports, not remote reports. In server reports there is no callback for the creation of pages and that was my problem, sorting out how to send all the pages. – David Lay Mar 25 at 21:24
vote up 0 vote down

Hi, great article... i have small silly question here.. When we use this sample, if we open the webform from a different computer than server, what happens? will the document still be printed on the server or client machine? Please let me know.

My email id is sravankasyapk@gmail.com

Thanks & Regards, Sravan Kasyap Karanam.

link|flag
The report is rendered on the server, but displayed and printed on the client. This approach is used to mantain an modify reports appart of the application, or for consume reports from many clients without duplicate the reports on each one. Server reports also benefit from scheduled notifications, data caching, and other good things of the report server engine on sqlserver. – David Lay Oct 29 at 19:26
David, Thanks for the response. Well, i got occupied with other issues. Now i am with a question again. I did try this example. This works great on a Windows App. But, when i try the same on ASP.NET Web application, it is not able to find the Printer. If i comment the below step if (!printDoc.PrinterSettings.IsValid) { string msg = String.Format("Can't find printer \"{0}\".", printerName); Console.WriteLine(msg); return; } it enters into an infinte loop. Please help me with this. How to get this to work on a Web app? – Sravan Kasyap Karanam Nov 10 at 22:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.