private void btnAdd_Click(object sender, EventArgs e) { frmAddOrUpdateGiangVien gv = new frmAddOrUpdateGiangVien(); gv.ShowDialog(); DoDuLieu(); }
private void btnUpdate_Click(object sender, EventArgs e) { if (dtgThongTinGiangVien.SelectedRows.Count <= 0) { return; } frmAddOrUpdateGiangVien updategv = new frmAddOrUpdateGiangVien(dtgThongTinGiangVien.SelectedRows[0].Cells[0].Value.ToString()); updategv.ShowDialog(); DoDuLieu(); }