Esempio n. 1
0
        private void rvPrint_Print(object sender, Microsoft.Reporting.WinForms.ReportPrintEventArgs e)
        {
            string strError = string.Empty;

            if (!Print_Func.PrintQuality(_header, ref strError))
            {
                MessageBox.Show(strError);
                e.Cancel = true;
                return;
            }
        }
Esempio n. 2
0
 private void reportViewer1_PrintingBegin(object sender, Microsoft.Reporting.WinForms.ReportPrintEventArgs e)
 {
 }