I am making a form that will Generate a report. It will display the report from the reporting services.
From that form, I have a preview and print buttons. Preview will display the report.
and print will print the report. Printing of reports would be possible even if the report isn't displayed yet.
How will i print the report though it hasn't beens shown yet?
What could be my possible code for it?
Loading
HERBERTS NGOBOLAPosted Jun 10, 2010, 10:02 AM
Report report = new Report();
report.Load(...);
report.RegisterData(...);
report.PrintSettings.ShowDialog = false;
report.Print();
But that is in FastReport.Net . Check here for more information