try
{
uyeekle.Open();
SqlCommand ekle = new SqlCommand("insert into uyeler (kullaniciadi,sifre,yetki) values('" + textBox1.Text + "','" + textBox2.Text + "','" + yetki + "')", uyeekle);
ekle.ExecuteNonQuery();



MessageBox.Show(textBox1.Text + " " + "Adlı Üye Başarılı Olarak Kayıt Edilmiştir. ...", "Bilgi Kutusu", MessageBoxButtons.OK, MessageBoxIcon.Information);
uyeekle.Close();
this.textBox1.Clear();
this.textBox2.Clear();
this.Hide();


}
catch (Exception)
{

MessageBox.Show("Aynı Kullanıcıdan mevcuttur. Lütfen Farklı Kullanıcı Adı Yazınız", "Bilgi Kutusu", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
uyeekle.Close();

if (textBox1.Text == "" || textBox2.Text == "")
                MessageBox.Show("Lütfen boş alanları doldurunuz..");
public form kısmında bir adet string yetki; şeklinde değişken atayarak radio button kayıt işlemini gerçekleştirdim