Exemplo n.º 1
0
        private void btnFunc9_Click(object sender, EventArgs e)
        {
            switch (nModulo)
            {

                case ((int)Modulo.Ventas):
                    frmReporteCaja frmV = new frmReporteCaja(empleado);
                    frmV.ShowDialog();
                    break;
                case ((int)Modulo.Logistica):
                    //Ajuste Inventario
                  frmAjustes frmL = new frmAjustes(empleado);
                    frmL.ShowDialog();
                    break;
            }
        }
Exemplo n.º 2
0
 private void ajusteToolStripMenuItem_Click(object sender, EventArgs e)
 {
     frmAjustes frm = new frmAjustes(empleado);
     frm.MdiParent = this;
     frm.Show();
 }