The examples below show how you can use the
Document property to print the report or show it in a
System.Windows.Forms.PrintPreviewDialog control.
// print the report to the default printer
_c1r.Document.Print();
// show the report in a PrintPreviewDialog
PrintPreviewDialog p = new PrintPreviewDialog():
p.Document = _c1r.Document;
p.ShowDialog();