/// <summary> /// Function to Update the items /// </summary> public void EditFunction() { try { RoleInfo infoRole = new RoleInfo(); RoleBll BllRole = new RoleBll(); infoRole.RoleId = Convert.ToDecimal(dgvRole.CurrentRow.Cells["dgvtxtRoleId"].Value); infoRole.Role = txtRole.Text.Trim(); infoRole.Narration = txtNarration.Text.Trim(); infoRole.Extra1 = string.Empty; infoRole.Extra2 = string.Empty; string strRole = txtRole.Text.Trim(); if (BllRole.RoleCheckExistence(decRoleId, strRole) == false) { BllRole.RoleEdit(infoRole); Messages.UpdatedMessage(); ClearFunction(); } else { Messages.InformationMessage("Role already exists"); txtRole.Focus(); } } catch (Exception ex) { MessageBox.Show("RL:4" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }