private void pedidoToolStripMenuItem_Click(object sender, EventArgs e) { if (userLog.tipoPerfil == "A" || userLog.tipoPerfil == "C") { Form tela = new frmEstoque(); tela.ShowDialog(); } }
private void Estoque_Click(object sender, EventArgs e) { if (userLog.tipoPerfil == "A" || userLog.tipoPerfil == "C") { Form tela = new frmEstoque(); tela.ShowDialog(); } else { MessageBox.Show("Permissão Inválida, consulte o administrador", "Informação", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void pictureBox9_Click(object sender, EventArgs e) { Form tela = new frmEstoque(); tela.ShowDialog(); }