资源描述:
《wincc-全套脚本总结》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、——————1、wincc全局脚本动作-------隐藏控件——————#include"apdefap.h"intgscAction(void){//WINCC:TAGNAME_SECTION_START//syntax:#defineTagNameInAction"DMTagName"//nextTagID:1//WINCC:TAGNAME_SECTION_ENDintvalue;value=GetTagBit("IM_in");//"IM_in"为触发的变量。if(value==1){SetVisible("lian
2、xi.pdl","按钮8",TRUE);//lianxi.pdl为控制对象所在画面名,“按钮8”为对象名称}else{SetVisible("lianxi.pdl","按钮8",FALSE);//lianxi.pdl}//WINCC:PICNAME_SECTION_START//syntax:#definePicNameInAction"PictureName"//nextPicID:1//WINCC:PICNAME_SECTION_ENDreturn0;}=================================
3、====================说明:在触发器里选择变量IM_in——————2、wincc全局脚本动作----提示框——————#include"apdefap.h"intgscAction(void){//WINCC:TAGNAME_SECTION_START//syntax:#defineTagNameInAction"DMTagName"//nextTagID:1//WINCC:TAGNAME_SECTION_ENDint72value;value=GetTagBit("IM_in");if(value==
4、1){MessageBox(NULL,"请确认三厅相关门是否关好,或者请解锁。","提示框",MB_OK
5、MB_ICONEXCLAMATION
6、MB_SETFOREGROUND
7、MB_SYSTEMMODAL);}//WINCC:PICNAME_SECTION_START//syntax:#definePicNameInAction"PictureName"//nextPicID:1//WINCC:PICNAME_SECTION_ENDreturn0;}=============================说明:在触发器
8、中选择变量触发。——————3、趋势面板——————————char*str_a=NULL;intHi;intLo;str_a=GetTagChar("TrendTagName1");Lo=GetTagSWord("TrendLo");Hi=GetTagSWord("TrendHi");SetPropWord(lpszPictureName,"qushi","TrendIndex",0);SetPropChar(lpszPictureName,"qushi","TrendTagName",str_a);SetPropWor
9、d(lpszPictureName,"qushi","ValueAxisBeginValue",Lo);SetPropWord(lpszPictureName,"qushi","ValueAxisEndValue",Hi);——————————————————————————————4、获取位号————————SetTagChar("TrendTagName1","ProcessValueArchive\PT111");//Return-Type:BOOLSetTagSWord("TrendHi",200);SetTag
10、SWord("TrendLo",0);SetTagByte("Trenden",1);——————————————————————————————5、调用登陆函数——————#pragmacode("useadmin.dll")#include"PWRT_API.H"#pragmacode()if(strcmp(GetTagChar("@CurrentUser"),"")==0){PWRTLogin('c');72}-------------------------------------——————6、时间同步—————
11、—voidSetCpuTime(){#pragmacode("kernel32.dll");voidGetLocalTime(SYSTEMTIME*lpst);#pragmacode();SYSTEMTIMEtimeBOOLret;//printf("StartfunctionSetCpuTimer