/// <summary> /// Save function /// </summary> public void SaveFunction() { try { RoleInfo infoRole = new RoleInfo(); RoleSP spRole = new RoleSP(); infoRole.Role = txtRole.Text.Trim(); infoRole.Narration = txtNarration.Text.Trim(); infoRole.Extra1 = string.Empty; infoRole.Extra2 = string.Empty; string strRole = txtRole.Text.Trim(); if (spRole.RoleCheckExistence(decRoleId, strRole) == false) { decRoleId = spRole.RoleAdd(infoRole); Messages.SavedMessage(); ClearFunction(); } else { Messages.InformationMessage("Role already exists"); txtRole.Focus(); } } catch (Exception ex) { formMDI.infoError.ErrorString = "RL:3" + ex.Message; } }
/// <summary> /// Save function /// </summary> public void SaveFunction() { try { RoleInfo infoRole = new RoleInfo(); RoleSP spRole = new RoleSP(); infoRole.Role = txtRole.Text.Trim(); infoRole.Narration = txtNarration.Text.Trim(); infoRole.Extra1 = string.Empty; infoRole.Extra2 = string.Empty; string strRole = txtRole.Text.Trim(); if (spRole.RoleCheckExistence(decRoleId, strRole) == false) { decRoleId = spRole.RoleAdd(infoRole); Messages.SavedMessage(); ClearFunction(); } else { Messages.InformationMessage("Role already exists"); txtRole.Focus(); } } catch (Exception ex) { MessageBox.Show("RL:3" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }