Is there a way to process a LocalReport
object (got this part done) and get it displayed after, in a ReportViewer
control, on another form? The idea is to print without the ReportViewer (already done) but, if the user wants to can also preview what he is about to print.
I'm using Visual Basic .NET SDK 3.5 and Visual Studio 2008. Can also use 2010, if needed.
I tryed to do something like this:
ReportViewer1.LocalReport = myLocalReport
but without luck since LocalReport
property on ReportViewer
is read only...
Any hint on this? Thanks in advance.
(I know to preform this using the ReportViewer1.LocalReport
method. All I want is to create a single code and bind it either to the printer directly or to the preview form)
I have a similar situation to you were I have services that can create a Local Report which can then be generated into a PDF, emailed, etc. However, because ReportViewer.LocalReport is a read-only property I had to either duplicate the code used to build the report or copy the values from my LocalReport to the ReportViewer.LocalReport. I'm not a fan of either option because either something might not get copied (i.e. sub reporting event) or there is code duplication.
I came up with the following extension that sets the LocalReport on a ReportViewer with reflection. I have not fully tested this and it may be a bad idea! However, it seems to work for the project I'm currently working on. I have no idea if the ReportViewer does some additional initialization of it's local report so something might blow up....
I CAN'T STRESS THIS ENOUGH -- USE AT YOUR OWN RISK - PROBABLY NOT A GOOD IDEA TO DO THIS
Usage: