WINCC怎么通过内部变量改变文字内容,使每个窗口显示不同的文字?

2024-11-05 05:19:12
推荐回答(1个)
回答1:

在文本窗口 右击 属性 字体 右击 选择 vbs

Function Text_Trigger(Byval Item)

Dim a
Set a=HMIRuntime.Tags("变量")
a.read

If "a= " Then

Item.Text="内容1"

End If
If "a= " Then

Item.Text="内容2"

End If
......

End Function