private void btn_Giris_Click(object sender, EventArgs e) { cmd = new SqlCommand("SELECT * FROM uyeol where isim='" + txt_ad.Text + "'and soyisim='" + txt_soyisim.Text + "' and parola='" + txt_parola.Text + "' ", baglanti); baglanti.Open(); dr = cmd.ExecuteReader(); if (dr.Read()) { ad = txt_ad.Text; sifre = txt_parola.Text; Anasayfa y = new Anasayfa(); this.Hide(); y.ShowDialog(); } else { MessageBox.Show("Kullanıcı adı ya da şifreniz hatalıdır"); } baglanti.Close(); }