> What I'm trying to do is:
> Grey out all 64 channels (1 channel = a string control, numeric
> indicator and two check boxes) when the acquisition begins (pushing a
> button). So this would take me 64*4 = 256 property nodes and I thought
> that there must be an easier way.
> 
Consider putting the string, numeric, and check boxes in a cluster. 
Place the cluster in an array, and grow it vertically to show 64 
elements.  If your layout has several columns, make a copy of the array 
and make say four of them with 16 rows each.
On the diagram you will be able to set the array properties easily, but 
you will not be able to set properties for individual cells within the 
array.
This will also affect how you access the controls.  Instead of 64x4
 
terminals all over the diagram, you will just have the arrays, and you 
can index and unbundle when you want a data element.  If you normally 
deal with the 64 displays, this will be very convenient.  If you often 
need access to individual elements, I'd recommend making a subVI icon 
where you pass in the array and the index and it returns the four 
subelements as outputs.  This will probably clean up your diagram as 
well as simplifying the graying of the display.
Greg McKaskle