or
void ReportToDefault(Report report) { if (report == null) return; System.Drawing.Printing.PrintController standardPrintController = new System.Drawing.Printing.StandardPrintController(); Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor(); reportProcessor.PrintController = standardPrintController; try { reportProcessor.PrintReport(report, Properties.Settings.Default.defaultPrinter); } catch (Exception ex) { MessageBox.Show(ex.Message); } }