In the CitectSCADA help, it states that labels can be used in cicode etc.
What I am trying to do is use partial subsitution to get the values of labels eg
i have a few labels defined: _C_V01_PressureConstant, _C_V02_PressureConstant etc
i need to perform a partial substitution of the label in cicode where i need to specify the equip name using a string value...
FUNCTION ExampleFunc(string sEquip)
int value = "_C" + sEquip + "_PressureConstant"
//the value returned in 0 but the label has been set a value of 900
END