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; } }
private void ajusteToolStripMenuItem_Click(object sender, EventArgs e) { frmAjustes frm = new frmAjustes(empleado); frm.MdiParent = this; frm.Show(); }