Esempio n. 1
0
        private void DocumentosPorFechaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            documentosPorFechaToolStripMenuItem.Enabled = false;
            ReporteDocumentosPorFecha Check = new ReporteDocumentosPorFecha();

            Check.Show();
        }
Esempio 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();
     }
 }