Exemple #1
0
        private void toolBuscar_Click(object sender, EventArgs e)
        {
            frmBuscar b = new frmBuscar();

            b.MdiParent = this.MdiParent;
            b._catalogo = GLOBALES.EMPLEADOS;
            b.OnBuscar += b_OnBuscar;
            b.Show();
        }
 private void btnBuscar_Click_1(object sender, EventArgs e)
 {
     frmBuscar b = new frmBuscar();
     b.OnBuscar += b_OnBuscar;
     b._catalogo = GLOBALES.EMPLEADOS;
     b._tipoNomina = _tipoNormalEspecial;
     b._periodo = _periodo;
     b.Show();
 }
 private void toolBuscar_Click(object sender, EventArgs e)
 {
     frmBuscar b = new frmBuscar();
     b._catalogo = GLOBALES.EMPLEADOS;
     b.OnBuscar += b_OnBuscar;
     b._busqueda = GLOBALES.FORMULARIOS;
     b.Show();
 }