private void crystalReportViewer1_Load(object sender, EventArgs e)
        {
            ReporteClientes reporte = new ReporteClientes();

            reporte.SetDataSource(lista);
            crystalReportViewer1.ReportSource = reporte;
            crystalReportViewer1.Refresh();
        }