private void button1_Click(object sender, EventArgs e) { yönetici yönetici = new yönetici(); yönetici.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { if (baglanti.State == ConnectionState.Open) { baglanti.Close(); } baglanti.Open(); if (string.IsNullOrEmpty(yöneticiad.Text) == true || string.IsNullOrEmpty(yönetsifre.Text) == true) { MessageBox.Show("Bu Alanlar Boş Bırakılamaz", "HATA", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { try { SqlCommand al = new SqlCommand("select * from ysifre where ad=@AD and sifre=@SİFRE", baglanti); al.Parameters.Add("@AD", SqlDbType.VarChar, 50).Value = yöneticiad.Text; al.Parameters.Add("@SİFRE", SqlDbType.VarChar, 50).Value = yönetsifre.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["AD"].ToString()); string sifre = (oku["SİFRE"].ToString()); if (ad == yöneticiad.Text || sifre == yönetsifre.Text) { yönetici yönetici = new yönetici(); yönetici.Show(); this.Close(); // 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(); } } }