Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
看不出了
If Vars("用户组") = "管理员" and Vars("用户组") <> "车间主管"
With Tables("日报表")
If .TopPosition > -1 Then
For i as Integer = .TopPosition To .BottomPosition
If .Rows(i,True).IsGroup Then
Exit For
else
If .Rows(i)("审核") = False Then
.Rows(i)("审核") = True
.Rows(i)("审核人") = Tables("登陆")(0)("用户名") & " " & now
Else
.Rows(i)("审核") = False
.Rows(i)("审核人") = Tables("登陆")(0)("用户名") & " " & now
End If
end if
Next
End If
End With
End If
If Vars("用户组") = "车间主管"
With Tables("日报表")
If .TopPosition > -1 Then
For i as Integer = .TopPosition To .BottomPosition
If .Rows(i,True).IsGroup Then
Exit For
else
If .Rows(i)("审核") = False Then
.Rows(i)("审核") = True
.Rows(i)("审核人") = Tables("登陆")(0)("用户名") & " " & now
End If
end if
Next
End If
End With
End If
下载信息 [文件大小: 下载次数: ] | |
点击浏览该文件:管理项目24.table |
6楼还是不行,如果有代码指定暂停筛选就好了,CurrentTable.ApplyFilter = False不行,显示所有行了,要求当前筛选不变。代码应该怎么写