private void btnGuncelle_Click_1(object sender, EventArgs e)
        {
            connection.Open();
            SqlCommand guncelle = new SqlCommand("update Uyeler set uye_ad='" + textBox2.Text + "',uye_soyad='" + textBox3.Text + "',uye_sinif='" + textBox4.Text + "',uye_gorev='" + textBox5.Text + "' where uye_id='" + textBox1.Text + "'", connection);

            guncelle.ExecuteNonQuery();
            connection.Close();

            MessageBox.Show("Kayıt Değiştirildi");
            anasayfa k = Application.OpenForms["anasayfa"] as anasayfa;

            k.kadroListele();
            this.Close();
        }
        private void btnGuncelle_Click_1(object sender, EventArgs e)
        {
            connection.Open();
            SqlCommand guncelle = new SqlCommand("update Uyeler set uye_ad='" + textBox1.Text + "',uye_soyad='" + textBox2.Text + "',uye_sinif='" + comboBox1.Text + "',uye_no='" + textBox4.Text + "',uye_adres='" + textBox5.Text + "',uye_telefon='" + maskedTextBox1.Text + "',uye_kayitucreti='" + textBox6.Text + "',uye_gorev='" + textBox7.Text + "',uye_resim='" + label8.Text + "'  where uye_id='" + _ID + "'", connection);


            guncelle.ExecuteNonQuery();
            connection.Close();
            MessageBox.Show("Kayıt Değiştirildi");
            this.Close();
            anasayfa a = Application.OpenForms["anasayfa"] as anasayfa;

            a.uyelerListele();
            a.kadroListele();
        }