Ejemplo n.º 1
0
 private void btnEkle_Click(object sender, EventArgs e)
 {
     kullanici.frmKullaniciDetay frmKullaniciDetay = new frmKullaniciDetay("-1");
       if (frmKullaniciDetay.ShowDialog() == System.Windows.Forms.DialogResult.OK)
       {
     dt.Clear();
     da.Fill(dt);
       }
 }
Ejemplo n.º 2
0
        private void btnDegistir_Click(object sender, EventArgs e)
        {
            //grid de bir satır seçilmemişse işlem yapmasın
              if (dataGridView1.SelectedRows.Count < 1) return;

              kullanici.frmKullaniciDetay frmKullaniciDetay = new frmKullaniciDetay(
            dataGridView1.SelectedRows[0].Cells["KullaniciID"].Value.ToString()
            );
              if (frmKullaniciDetay.ShowDialog() == System.Windows.Forms.DialogResult.OK)
              {
            dt.Clear();
            da.Fill(dt);
              }
        }