private void generarRpt(string filePath)
        {
            ReportDocument rptDoc = new ReportDocument();

            rptDoc.Load(filePath);
            Crv_Reporte.ReportSource = rptDoc;
            Crv_Reporte.Refresh();
        }
 private void generarRpt(string filePath)
 {
     rptDoc = new ReportDocument();
     rptDoc.Load(filePath);
     Crv_Reporte.ReportSource             = rptDoc;
     Crv_Reporte.ShowExportButton         = false;
     Crv_Reporte.ShowCopyButton           = false;
     Crv_Reporte.ShowParameterPanelButton = false;
     Crv_Reporte.Refresh();
 }