Changed logic for Security Group delete, so that the default Group cannot be deleted.
The applicabilty tab was made invisible for Procedures (Title) and MSWord Sections when they are open in DSOFramer.
This commit is contained in:
@@ -347,6 +347,11 @@ namespace VEPROMS
|
||||
return;
|
||||
}
|
||||
GroupInfo gi = myGroupInfoList[lstGroups.SelectedIndex];
|
||||
if(myFolder.FolderConfig.Security_Group == gi.GID)
|
||||
{
|
||||
MessageBox.Show("Cannot Delete Default Group", "Attempt to Delete Default", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
return;
|
||||
}
|
||||
bool deleteOK = true;
|
||||
if(gi.GroupMembershipCount > 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user