private void VentanaReporteCliente_Load(object sender, EventArgs e)
        {
            ReporteCliente reporte = new ReporteCliente();

            ClienteCrystalReportViewer.ReportSource = reporte;
            ClienteCrystalReportViewer.RefreshReport();
        }
        public void Visualizar(string reporte)
        {
            ReportDocument report = new ReportDocument();

            report.Load($"{rutaReportes}{reporte}.rpt");

            report.SetDataSource(listaClientes);
            ClienteCrystalReportViewer.ReportSource = report;
            ClienteCrystalReportViewer.Refresh();

            ShowDialog();
        }