private void cmdNew_Click(object sender, EventArgs e) { if (SqlDb.IsAllow(AppVariable.CURRENT_SUB_MENU, AppVariable.CURRENT_USER_LEVEL_ID.ToString(), "IsInsert") == true) { curIndex = grdView.RowCount; frmMedUnitDetail detailForm = new frmMedUnitDetail(); detailForm.txtName.Tag = string.Empty; detailForm.txtName.Text = string.Empty; detailForm.cmdSave.Tag = "Add"; detailForm.ShowDialog(); Binding(); } else { MessageBox.Show("Sorry, Administrator is not allow this action?", "MediPro :: Clinic System", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private void Edit() { if (SqlDb.IsAllow(AppVariable.CURRENT_SUB_MENU, AppVariable.CURRENT_USER_LEVEL_ID.ToString(), "IsEdit") == true) { curIndex = grdView.GetDataSourceRowIndex(grdView.FocusedRowHandle); frmMedUnitDetail detailForm = new frmMedUnitDetail(); detailForm.txtName.Tag = dr.ItemArray[0].ToString(); detailForm.txtName.Text = dr.ItemArray[1].ToString(); detailForm.chkIsActive.EditValue = bool.Parse(dr.ItemArray[2].ToString()); detailForm.cmdSave.Tag = "Edit"; detailForm.ShowDialog(); Binding(); } else { MessageBox.Show("Sorry, Administrator is not allow this action?", "MediPro :: Clinic System", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }