private void label7_Click(object sender, EventArgs e) { secim secim = new secim(); secim.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { if (baglanti.State == ConnectionState.Open) { baglanti.Close(); } baglanti.Open(); if (string.IsNullOrEmpty(kullaniciAd.Text) == true || string.IsNullOrEmpty(kullaniciSifre.Text) == true) { MessageBox.Show("Bu Alanlar Boş Bırakılamaz", "HATA", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { try { SqlCommand al = new SqlCommand("select * from musteriler where kullaniciAd=@kullaniciAd and kullaniciSifre=@KullaniciSifre", baglanti); al.Parameters.Add("@kullaniciAd", SqlDbType.VarChar, 50).Value = kullaniciAd.Text; al.Parameters.Add("@kullaniciSifre", SqlDbType.VarChar, 50).Value = kullaniciSifre.Text; SqlDataReader oku = al.ExecuteReader(); if (!oku.HasRows) { MessageBox.Show("Böyle Bir Kullanıcı Yok.", "GİRİŞ BAŞARISIZ !", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { while (oku.Read()) { string ad = (oku["KullaniciAd"].ToString()); string sifre = (oku["KullaniciSifre"].ToString()); if (ad == kullaniciAd.Text || sifre == kullaniciSifre.Text) { secim secim = new secim(); secim.Show(); this.Hide(); } else { MessageBox.Show("Hatalı Kullanıcı Adı Veya Şifre", "GİRİŞ BAŞARISIZ !", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } } catch (Exception hata) { MessageBox.Show(hata.Message); } finally { baglanti.Close(); } } }