LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Full Display Of a(n) (dynamic) Array

Solved!
Go to solution

I think VItan has it right.

 

You need to do the same resizing operation for the arrays WITHIN the cluster to resize these also.  I don't have LV here so I can't test but the references you use probably only point to the individual indicators meaning that operation has no effect on the array within the cluster at all.

 

Right-click the arrays within the cluster (making sure only the arrays are selected) and create either a reference or a rpoperty node to repeat the resizing on these indicators also.

0 Kudos
Message 11 of 14
(845 Views)

Hi Alain,

 

THINK DATAFLOW!!!

 

You only wire the DATA into the cluster. You DON'T wire any properties of your FP indicators magically into your cluster!

You have to set  properties for each and every indicator you want to!

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 12 of 14
(836 Views)
Solution
Accepted by AlainKabs

@Intaris wrote:

I think VItan has it right.

 

You need to do the same resizing operation for the arrays WITHIN the cluster to resize these also.  I don't have LV here so I can't test but the references you use probably only point to the individual indicators meaning that operation has no effect on the array within the cluster at all.

 

Right-click the arrays within the cluster (making sure only the arrays are selected) and create either a reference or a rpoperty node to repeat the resizing on these indicators also.


You can use any of the following three to interact with the properties of the elements of the cluster:

 

  1. Reference constant on the block diagram wired to a property node.  Either:
    • Create this by right-clicking on the specific element of the cluster on the front panel and select Create -> Reference.
    • Create this by creating a reference constant on the block diagram and going through the hierarchy to get the item that you want (an example for this case, "Pane -> Result -> Tableu 3")
  2. Linked property node.  Either:
    • Create this by right-clicking on the specific element of the cluster on the front panel and select Create -> Propety Node.
    • Create this by creating a property node on the block diagram, right clicking it, and selecting Link To -> then going through the hierarchy.
  3. Use the Controls[] property of the cluster indicator itself to get an array of references to all of its elements, then cast them to their appropriate class using To More Specific Class.  Pass the resulting reference to a property node to interact with its properties.


0 Kudos
Message 13 of 14
(828 Views)

Hello,

Thank you ALL for the answers, it works totally right, now.

 

On a side note, 


VItan wrote :
 an example for this case, "Pane -> Result -> Tableu 3

 

Tableau means Array in French, the default language of my computer at work, but I prefer using the English version of LabVIEW.

I assume everyone had already guessed I was a French speaker, from my alias...

 

Again, thak you ALL.

 

0 Kudos
Message 14 of 14
(785 Views)