private void btnLogin_Click(object sender, EventArgs e)
        {
            if( (txtNome.Text == "Nemuel") && (txtSenha.Text == "admin") )
            {
                Form frmRealizarPedido = new frmRealizarPedido(txtNome.Text);
                frmRealizarPedido.Show();

                this.Hide();
            }
        }
 private void realizarPediddoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Form frmRealizarPedido = new frmRealizarPedido("Administrador");
     frmRealizarPedido.Show();
     this.Hide();
 }