Foxtable(狐表)用户栏目专家坐堂 → 授择


  共有2605人关注过本帖平板打印复制链接

主题:授择

帅哥哟,离线,有人找我吗?
qazlinle6
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:七尾狐 帖子:1553 积分:10495 威望:0 精华:0 注册:2013/6/8 16:19:00
授择  发帖心情 Post By:2020/11/11 23:58:00 [只看该作者]

For Each t As Table In Tables '显示所有表和列
    t.Visible = True
    t.AllowEdit = True
    For Each c As Col In t.Cols
        c.Visible = True
        c.AllowEdit = True
    Next
Next
Tables("表权限").Visible = (User.Type <> UserTypeEnum.User )
If  User.Type <> UserTypeEnum.User Then
    Return
End If
For Each dr As DataRow In DataTables("表权限").Select("','+角色用户+',' like '%," & user.Roles & ",%'" )
    If dr.IsNull("列名") Then
        For Each t As Table In Tables
            If t.DataTable.Name = dr("表名") Then
                t.Visible = Not dr("权限表不可见")
                t.AllowEdit = Not dr("权限表不可编缉")
            End If
        Next
    Else
        For Each t As Table In Tables
            If t.DataTable.Name = dr("表名") Then
                For Each c As Col In t.Cols
                    If c.Name = dr("列名") Then
                        c.Visible = Not dr("权限表不可见")
                        c.AllowEdit = Not dr("权限表不可编缉")
                    End If
                Next
            End If
        Next
    End If
Next



什么没反应
[此贴子已经被作者于2020/11/12 0:51:18编辑过]

 回到顶部