比如想把字节变量的最高位置1
最佳答案
vbs:
dim tag
tag=hmiruntime.tags("A").read
tag=tag or 128
hmiruntime.tags("A").write tag
c:
int mytag;
mytag=GetTagByte("A");
mytag=mytag|128;
SetTagByte("A",mytag);
提问者对于答案的评价:
非常感谢,你的回答太全面了!!
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc210227.html