比如我要比较外部变量A和B,如果A大于B,C=1,如果A不大于B,C=0。我该怎么做?谢谢!
最佳答案
c比较麻烦,还要根据数据的类型选择不同的函数,直接用vbs吧:
dim tag(2)
tag(0)=hmiruntime.tags("A").read
tag(1)=hmiruntime.tags("B").read
if tag(0)>tag(1) then
hmiruntime.tags("C").write 1
else
hmiruntime.tags("C").write 0
end if
提问者对于答案的评价:
谢谢
专家置评
已阅,最佳答案正确。
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc218072.html