Jump to content

bburan

Members
  • Posts

    3
  • Joined

  • Last visited

    Never

bburan's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Agreed. However, it really depends on what you intend to do with the array. If you think you ever will want to search for or analyze individual elements in the array, Michael's suggestion is the best one. An alternative is to convert it to a "spreadsheet string" or some other format that can be parsed back into an array, and store that string in the field. This, however, makes it impossible to search or analyze the data in the array using SQL. I generally use both techniques in one project depending what I need to do with the data in the array.
  2. When I first started out creating my application, I tried saving my subVIs in folders according to their purpose. For example, subVIs to extract my experiment data from text files went in one folder, subVIs to perform signal processing went in another, and then I had a "miscellaneous" folder for some subVIs that did not logically fit into any of the other folders I made. Looking back on my hierarchy, I realize that I made some bad choices about where I placed my subVIs, and want to rearrange them. The problem, however, is that when I rearrange them, I have to go through every VI that uses these subVIs and teach the VI the new location of the subVI. Is there any way to avoid having to do this?
  3. I'm trying to enter a tree control in an array, and I want the contents of each "tree" in the array to be different. However, whenever I add a string to the tree in one array cell, it shows up in the trees in all other array cells. Is there any way to "decouple" these trees?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.