Exemplo n.º 1
0
        private void DocumentosPorClienteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            documentosPorClienteToolStripMenuItem.Enabled = false;
            ReporteDocumentosPorCliente Check = new ReporteDocumentosPorCliente();

            Check.Show();
        }
Exemplo n.º 2
0
 private void btn_Regresar_Click(object sender, EventArgs e)
 {
     this.Hide();
     if (tipoReporte == "F")
     {
         ReporteDocumentosPorFecha Check = new ReporteDocumentosPorFecha();
         Check.Show();
     }
     else if (tipoReporte == "C")
     {
         ReporteDocumentosPorCliente Check = new ReporteDocumentosPorCliente();
         Check.Show();
     }
 }