private void btnEntrar_Click(object sender, EventArgs e)
 {
     if (txtSenhaAdm.Text == "veronica_viana")
     {
         this.Hide();
         frmCadastroLogin abrir = new frmCadastroLogin();
         abrir.Show();
     }
     else
     {
         MessageBox.Show("Senha de acesso incorreta, tente novamente.", "Erro de Permissão", MessageBoxButtons.OK, MessageBoxIcon.Information);
         txtSenhaAdm.Text = string.Empty;
         txtSenhaAdm.Focus();
     }
 }