Hi,
I am trying to print my report programatically using a browser and it prints fine on my development machine but when I try to print the same report on a server my browser gets hanged. I tried on Internet Explorer 8, Firefox and on Google chrome but the problem still persists.
I am trying to print my report programatically using a browser and it prints fine on my development machine but when I try to print the same report on a server my browser gets hanged. I tried on Internet Explorer 8, Firefox and on Google chrome but the problem still persists.
Private Sub PrintReport(ByVal report As Telerik.Reporting.Report) Dim printerSettings As New System.Drawing.Printing.PrinterSettings ' The standard print controller comes with no UI Dim standardPrintController As New System.Drawing.Printing.StandardPrintController ' Print the report using the custom print controller Dim reportProcessor As New Telerik.Reporting.Processing.ReportProcessor reportProcessor.PrintController = standardPrintController reportProcessor.PrintReport(report, printerSettings) End Sub