private void ReporteClientesMenuItem_Click(object sender, RoutedEventArgs e)
        {
            ReporteClientes reporte = new ReporteClientes();

            reporte.Owner = this;
            reporte.ShowDialog();
        }
        private void btnReportCliente_Click(object sender, EventArgs e)
        {
            this.Close();
            ReporteClientes reportC = new ReporteClientes();

            reportC.Show();
        }
Beispiel #3
0
        private void crystalReportViewer1_Load(object sender, EventArgs e)
        {
            ReporteClientes abrir = new ReporteClientes();

            abrir.SetDataSource(datos);
            ReporteClienteViewer.ReportSource = abrir;
            ReporteClienteViewer.Refresh();
        }
Beispiel #4
0
        private void ReporteButton_Click(object sender, EventArgs e)
        {
            if (lista.Count == 0)
            {
                lista = BLL.ClienteBLL.Buscar();
            }
            ReporteClientes abrir = new ReporteClientes(lista);

            abrir.Show();
        }