private void btnKullaniciDegistir_Click(object sender, EventArgs e) { try { int satirNo = gvKullanici.FocusedRowHandle; Ayarlar.frmAyarlarKullanici frmAyarlarKullanici = new frmAyarlarKullanici(gvKullanici.GetFocusedRowCellValue("KullaniciID").ToString()); if (frmAyarlarKullanici.ShowDialog() == System.Windows.Forms.DialogResult.OK) { dtKullanici.Clear(); //daKullanici.Update(dtKullanici); daKullanici.Fill(dtKullanici); } gvKullanici.FocusedRowHandle = satirNo; } catch (Exception hata) { frmHataBildir frmHataBildir = new frmHataBildir(hata.Message, hata.StackTrace); frmHataBildir.ShowDialog(); } }
private void btnKullaniciEkle_Click(object sender, EventArgs e) { Ayarlar.frmAyarlarKullanici frmAyarlarKullanici = new frmAyarlarKullanici("-1"); frmAyarlarKullanici.ShowDialog(); }