Exemplo n.º 1
0
 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();
     }
 }
Exemplo n.º 2
0
 private void btnKullaniciEkle_Click(object sender, EventArgs e)
 {
     Ayarlar.frmAyarlarKullanici frmAyarlarKullanici = new frmAyarlarKullanici("-1");
     frmAyarlarKullanici.ShowDialog();
 }