Hi,
I am facing printing problem in server.I wrote this code
using (System.Windows.Forms.PrintDialog printDlg = new System.Windows.Forms.PrintDialog()) |
{ |
printDlg.AllowSomePages = true; |
printDlg.AllowCurrentPage = false; |
printDlg.UseEXDialog = true; |
if (System.Windows.Forms.DialogResult.OK == printDlg.ShowDialog()) |
{ |
Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor(); |
reportProcessor.PrintReport(report, printDlg.PrinterSettings); |
} |
} |
this code working in local system like developer system, printing is good.But it's not working on server please it's very argent how to solve this problem.
thanks and regards
shanker.B
thanks and regards
shanker.B