"mike.mccollough@raytheon.com" wrote in message news:<506500000008000000B6610000-1031838699000@exchange.ni.com>...
> How do I creat a list of records. I can't use an array because the
> groupings have different number of records and the records have
> different data types. For example
> a record consists of a group, section, and a task/test. How do I
> create a list of these for me to process and report on downstream in
> my application?
Make an array of clusters. (This is going to get complicated, so I am
making a list)
On the FRONT PANEL:
1.Make a cluster
2.Make 3 arrays of strings labeled group array, section array, and
task/test array, then drag these arrays into the cluster listed
above.(I suggest strings because they can pass text and numbers
easily)
3.Make an array, then drag the cluster listed above into this array.
This will now make n copies of your cluster, each one having it's own
trio of arrays inside.
If for intance, a particular case has more than 1 task/test, start
listing the tasks in task/test array. Then when you finally unbundle
the arrays, do whatever you need to do until each array is empty.
Remember that making arrays and clusters eats up large amounts of
memory quickly, so this will probably slow the computer down.