08-17-2010 10:22 AM
I need to control the apperance of a single element of an array. 'ArrElem.Blinking' set to True does result in one element of the array to blink.
I can use the index to set the value,
?? But I do not see how to select index of the array to set this property 'ArrElem.blinking.??
08-17-2010 10:23 AM
You can't. All elements of the array must have the same properties, and that includes blinking. The only difference allowed between array elements is value.
What you can do is build your data structure so that instead of an array, it is a cluster, then access that particular element of the cluster and have it blink.