Example #1
0
        private void wfReporteador_Load(object sender, EventArgs e)
        {
            try
            {
                ReportDocument rptDoc = new ReportDocument();
                rptDoc.Load(@"\\mxni-fs-01\Temp\wrivera\agonz0\CloverCES\Reportes\CrystalReport2.rpt");


                DataTable dtSource = MetadiaLogica.Reporte();
                rptDoc.SetDataSource(dtSource);
                crystalReportViewer1.ReportSource = rptDoc;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString(), Text, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                Close();
            }
        }