private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            if (Global.Margem.ConfiguraçãoSistema != "adm")
            {
                MessageBox.Show("Acesso não autorizado");

                return;
            }
            if (checkBox1.Checked == false)
            {
                string temp = "não";
                DALCadastro.Atualiza_Banco(label21.Text, temp);
                MessageBox.Show("Banco Inativado");
                dataGridView1.DataSource = DALCadastro.Lista_Banco();
            }
            if (checkBox1.Checked == true)
            {
                string temp = "sim";
                DALCadastro.Atualiza_Banco(label21.Text, temp);
                MessageBox.Show("Banco Ativo");
                dataGridView1.DataSource = DALCadastro.Lista_Banco();
            }
        }