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...