warning Cicode message : possible missing operand between tags

ahmed007

Member
Join Date
Aug 2019
Location
baghdad
Posts
13
Hi ... Everyone*

I have this warning Cicode message :

" possible missing operand between tags"

when compile below code 👇

****************************************
Code:
STRING sTagName = "EG01" ;

sTagName+"_START" = sTagName+"STATUS"

****************************************
 
Last edited:
Hi ... Everyone*

I have this warning Cicode message :

" possible missing operand between tags"

when compile below code ��

****************************************
Code:
STRING sTagName = "EG01" ;

 sTagName+"_START" = sTagName+"STATUS"
****************************************


I think you may be Possibly just missing the ;


sTagName+"_START" = sTagName+"STATUS";


OR TRY



TagWrite(sTagName+"_START", sTagName+"STATUS");




 
Last edited:
I think you may be Possibly just missing the ;


sTagName+"_START" = sTagName+"STATUS";


OR TRY



TagWrite(sTagName+"_START", sTagName+"STATUS");





Thanks it's working .. But i faced other problem that is can not associate (sTagName) with SuperGenie , I'm tried to use AssGetProperty , AssInfo Functions as below shown :

This is Associating function's cicode with SuperGenie
Code:
Function Assoc(STRING sTagName)
Asss(-2,6,sTagName,0)
END

And this my function that need to associate sTagName with it , it's called by pressing Button at SuperGenie's page :

Code:
Function My_Func(INT iArg)
STRING sTagName = " " ;
sTagName = AssGetProperty(iArg, "TagName");
END
 

Similar Topics

Hello everyone, Recently, my Archestra IDE shut down while I was editing. After restarting the IDE, I noticed warning symbols under my opened...
Replies
1
Views
96
I am running Logix Designer v32, and noticed if I type new instruction value(s) (XIC, XIO, MOV, etc etc) into a rung without any operands/tags...
Replies
4
Views
752
Does anyone know of a timer that keeps accurate enough time to close a set of contacts for 30 seconds on the first Tuesday of the month for two...
Replies
7
Views
1,403
Hello. I am trying to use the Codesys function FILE.DirOpen from the CAA File library. For the eError output parameter I declare a CAA.ERROR type...
Replies
7
Views
2,627
Hi, I'm getting a bunch of these warnings when I build the program in Connected Components Workbench. The program is legacy code. The program...
Replies
5
Views
2,324
Back
Top Bottom