private void btnEkle_Click(object sender, EventArgs e) { if (txtSifre1.Text.Trim() == txtSifre2.Text.Trim()) { S_Siparisler.M_KullaniciSifreGuncelle(FrmGiris.FrmSistemYonetimi.dtKullaniciListesi.CurrentRow.Cells[0].Value.ToString(), txtSifre1.Text.Trim()); txtKullaniciAdi.Text = ""; txtSifre1.Text = ""; txtSifre2.Text = ""; FrmGiris.FrmSistemYonetimi.Show(); S_Siparisler.M_Kullanicilar(FrmGiris.FrmSistemYonetimi.dtKullaniciListesi); this.Hide(); } else { MessageBox.Show("İki şifre alanına girilen şifre farklıdır.", "Şifre Değiştirme", MessageBoxButtons.OK, MessageBoxIcon.Information); txtSifre1.Text = ""; txtSifre2.Text = ""; } }