/// <summary>
        /// Reads all actionrights for the current selected forum and shows these settings in the form
        /// </summary>
        private void ReflectCurrentActionRights()
        {
            ForumRoleForumActionRightCollection actionRights = SecurityGuiHelper.GetForumActionRightRolesFoForumRole(_roleID, _forumID);

            foreach (ForumRoleForumActionRightEntity currentEntity in actionRights)
            {
                cblForumRights.Items.FindByValue(currentEntity.ActionRightID.ToString()).Selected = true;
            }
        }