public override void InsertEntry() { using (frmAccount _frm = new frmAccount()) { _frm.Text = "Thêm mới tài khoản"; _frm.fType = eFormType.Add; _frm._ReloadData = this.LoadData; _frm.ShowDialog(); } }
public override void UpdateEntry() { if (grvAccountList.RowCount > 0 && grvAccountList.FocusedRowHandle >= 0) { try { using (frmAccount _frm = new frmAccount()) { xAccount _eEntry = (xAccount)grvAccountList.GetRow(grvAccountList.FocusedRowHandle); _frm._iEntry = _eEntry; _frm.Text = "Cập nhật tài khoản"; _frm.fType = eFormType.Edit; _frm._ReloadData = this.LoadData; _frm.ShowDialog(); } } catch (Exception ex) { clsGeneral.showErrorException(ex, "Exception"); } } }