private void btnUsun_Click(object sender, EventArgs e) { int Id = 0; DataTable g = dgvWypo.DataSource as DataTable; DataRow row = ((DataRowView)dgvWypo.SelectedRows[0].DataBoundItem).Row; Id = row.Field <int>("IdWypo"); DataTable wyp = wypWypozyczTableAdapter1.GetDataBy(Id); Wypo del = new Wypo(wyp); del.Usun(); Main_Load(this, e); }
private void btnEdycja_Click(object sender, EventArgs e) { int Id = 0; DataTable g = dgvWypo.DataSource as DataTable; DataRow row = ((DataRowView)dgvWypo.SelectedRows[0].DataBoundItem).Row; Id = row.Field <int>("IdWypo"); DataTable wyp = wypWypozyczTableAdapter1.GetDataBy(Id); Wypo WypoEdyt = new Wypo(wyp); frmWypo Wyp = new frmWypo(WypoEdyt); Wyp.dodano += Main_Load; Wyp.ShowDialog(); }
private void Mapper() { Wypo lista = new Wypo(); foreach (DataGridViewRow row in dgvWypo.Rows) { DateTime Strt = Convert.ToDateTime(row.Cells[5].Value.ToString()); DateTime Stop = Convert.ToDateTime(row.Cells[6].Value.ToString()); if (Strt < dtpStart.Value || Stop > dtpStop.Value) { dgvWypo.Rows[row.Index].Visible = false; } } }