Hi, I have two array constants defined as:
FULL : Array[1..5] of boolean = (True,True,True,True,True);
NONE : Array[1..5] of boolean = (False,False,False,False,False);
and an array defined as:
Status:Array[1..5] of Boolean;
If I try to compare them with a line such as the one below:
If Status = FULL then {code}
it gives me an error:
'Operator not applicable to this operand type'
I've played around with it a lot and checked the help files with no luck. Can anyone tell me what going on here?
FULL : Array[1..5] of boolean = (True,True,True,True,True);
NONE : Array[1..5] of boolean = (False,False,False,False,False);
and an array defined as:
Status:Array[1..5] of Boolean;
If I try to compare them with a line such as the one below:
If Status = FULL then {code}
it gives me an error:
'Operator not applicable to this operand type'
I've played around with it a lot and checked the help files with no luck. Can anyone tell me what going on here?