可以对两个变量分别建立触发器,触发周期设置为“有变化时” 然后在Action代码中写入相关操作语句
Function action
Dim tagTemp1
Dim tagTemp2
Dim txtTemp
Set tagTemp1 = HMIRuntime.Tags("TAG1")
tagTemp1.Read
Set tagTemp2 = HMIRuntime.Tags("TAG2")
Set txtTemp = ScreenItems("txtID")
If tagTemp1.Value = 1 Then
tagTemp2.Write 0
txtTemp.Text = "远程"
End If
End Function
我这是当tag1的值为1的时候强制设置文本框为“远程”的,具体的你可以改改~~~