private void toolStripButton6_Click(object sender, EventArgs e)
        {
            Form tela = new frmEstoque();

            tela.MdiParent = this;
            tela.Show();
        }
 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();
        }