请教前辈了,rt,我想实现这种功能,请问组合框下拉的vbs怎么写?获取所选条件的vbs怎么写?如果有“查询按钮”的vbs模板最好了!小弟只有5西币,都放了,希望大家能多帮忙,多提建议啊!谢谢了!
图片说明:
最佳答案
你不需要一个问题多次提问,你所谓的这个组合框实际是wincc的文本列表,列表中给变量分配不同的值对应不同的文本(如定义wincc内部变量textno,文本列表,你的这四行分别对应给textno赋值0,1,2,3),然后vbs脚本查询用条件查询比如:
if hmiruntime.tags("textno").read=0 then
查询脚本
elseif hmiruntime.tags("textno").read=1 then
查询脚本
elseif hmiruntime.tags("textno").read=2 then
查询脚本
elseif hmiruntime.tags("textno").read=3 then
查询脚本
end if
如果是sql查询可以直接用where语句
dim mytag
mytag= hmiruntime.tags("textno").read
sql=查询语句+where mytag=0
提问者对于答案的评价:
非常感谢,问题解决了,学习了!
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc176943.html