想通过VBS脚本程序读取当前登录的用户名,不知道照明写程序,请高手指点
最佳答案
示例代码:
Sub OnLButtonDown(ByVal Item, ByVal Flags, ByVal x, ByVal y)
Dim CurrentUserName
Dim UserName
Set CurrentUserName = HMIRuntime.Tags("@CurrentUserName")
If CurrentUserName.Read <> "" Then
UserName=CurrentUserName.Value
Else
UserName="unknow user"
End If
End Sub
图片说明:
提问者对于答案的评价:
非常感谢
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc317414.html