无打印机选择对话框打印

我想直接打印我的水晶报告,没有打印机选择弹出窗口。 我怎样才能做到这一点 ?

myReportDocument.SetDataSource(saveDataSet); //Print crystalReportViewer1.ShowRefreshButton = false; crystalReportViewer1.ShowCloseButton = false; crystalReportViewer1.ShowGroupTreeButton = false; crystalReportViewer1.ReportSource = myReportDocument; crystalReportViewer1.PrintReport(); 

我正在使用默认(且仅限)打印机。

 myReportDocument.PrintOptions.PrinterName = "PRINTER_NAME"; myReportDocument.PrintToPrinter(copies, collate, startPage, endPage);