资源描述:
《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("lianxi.pdl","按钮8",TRUE);
2、//lianxi.pdl为控制对象所在画面名,“按钮8”为对象名称}else{SetVisible("lianxi.pdl","按钮8",FALSE);//lianxi.pdl}//WINCC:PICNAME_SECTION_START//syntax:#definePicNameInAction"PictureName"//nextPicID:1//WINCC:PICNAME_SECTION_ENDreturn0;}=====================================================说明:在触发器里选择变量IM_in———
3、———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==1){MessageBox(NULL,"请确认三厅相关门是否关好,或者请解锁。","提示框",MB_OK
4、MB_ICON
5、EXCLAMATION
6、MB_SETFOREGROUND
7、MB_SYSTEMMODAL);}//WINCC:PICNAME_SECTION_START//syntax:#definePicNameInAction"PictureName"//nextPicID:1//WINCC:PICNAME_SECTION_ENDreturn0;}=============================说明:在触发器中选择变量触发。——————3、趋势面板——————————char*str_a=NULL;intHi;intLo;str_a=GetTagChar("Tren
8、dTagName1");Lo=GetTagSWord("TrendLo");Hi=GetTagSWord("TrendHi");SetPropWord(lpszPictureName,"qushi","TrendIndex",0);SetPropChar(lpszPictureName,"qushi","TrendTagName",str_a);SetPropWord(lpszPictureName,"qushi","ValueAxisBeginValue",Lo);SetPropWord(lpszPictureName,"qushi","ValueAxisEn
9、dValue",Hi);——————————————————————————————4、获取位号————————SetTagChar("TrendTagName1","ProcessValueArchive\PT111");//Return-Type:BOOLSetTagSWord("TrendHi",200);SetTagSWord("TrendLo",0);SetTagByte("Trenden",1);——————————————————————————————5、调用登陆函数——————#pragmacode("useadmin.dll")#inclu
10、de"PWRT_API.H"#pragmacode()if(strcmp(GetTagChar("@CurrentUser"),"")==0){PWRTLogin('c');72}-------------------------------------——————6、时间同步——————voidSetCpuTime(){#pragmacode("kernel32.dll");voidGetLocalTime(SYSTEMTIME*lpst);#pragmacode();SYSTEMTIMEtimeBOOLret;//printf("StartfunctionS
11、etCpuTimer