以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 请问老师这个代码错在哪了 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=115333) |
-- 作者:nxqtxwz -- 发布时间:2018/3/5 15:05:00 -- 请问老师这个代码错在哪了 If user.name="校长" Or "教务处" Or "办公室" Then e.Cancel = False \'允许编辑 Else e.Cancel = True \'禁止编辑 MessageBox.Show("抱歉,您没有编辑权限!") End If |
-- 作者:有点甜 -- 发布时间:2018/3/5 15:20:00 -- If user.name="校长" Or user.name = "教务处" Or user.name = "办公室" Then |
-- 作者:nxqtxwz -- 发布时间:2018/3/5 15:22:00 -- 显示:从字符串“教务处”到类型“Boolean”的转换无效。 |
-- 作者:有点甜 -- 发布时间:2018/3/5 15:27:00 -- 以下是引用有点甜在2018/3/5 15:20:00的发言:
If user.name="校长" Or user.name = "教务处" Or user.name = "办公室" Then
If user.name="校长" Or user.name = "教务处" Or user.name = "办公室" Then |