以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]关于MessageBox  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=144354)

--  作者:lgj716330
--  发布时间:2019/12/17 20:08:00
--  [求助]关于MessageBox
With CurrentTable 
For i As Integer = .TopPosition To .BottomPosition
If .Rows(i)("审核") = user.name Then
    .Rows(i)("审核") = Nothing
Else
    MessageBox.show("你无取消审批权限!")
End If
Next
End With

当我选择很多行的时候,会不停地跳出MessageBox窗口,如何实现只跳出一次就退出MessageBox窗口

--  作者:有点蓝
--  发布时间:2019/12/17 20:10:00
--  
Else
    MessageBox.show("你无取消审批权限!")
return
End If