private void btnUpdate_Click(object sender, EventArgs e) { try { if (this.grvCompany.SelectedRows.Count > 0) { int selectedIndex = grvCompany.SelectedRows[0].Index; // gets the RowID from the first column in the grid var companyCode = grvCompany[0, selectedIndex].Value.ToString(); tblCompany company = CompanyFactory.FindByCode(companyCode); if (company == null) { MessageBox.Show("Doanh nghiệp này không còn tồn tại trong Cơ Sở Dữ Liệu. Bạn hãy kiểm tra lại", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } FrmAddCompany frmAddCompany = new FrmAddCompany(companyCode, 1, _userInfo, this); frmAddCompany.MdiParent = this.MdiParent; frmAddCompany.Show(); } else { MessageBox.Show("Bạn cần chọn một bản ghi để cập nhật", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } catch (Exception ex) { logger.Error(ex.ToString()); if (GlobalInfo.IsDebug) MessageBox.Show(ex.ToString()); } }
private void btnAdd_Click(object sender, EventArgs e) { FrmAddCompany frmAddCompany = new FrmAddCompany(null, 0, _userInfo, this); frmAddCompany.MdiParent = this.MdiParent; frmAddCompany.Show(); }