05-29-2013 08:24 PM
Hi fellow engineers,
I'm new to LabVIEW.
I got a question,
If I got a 1D array of string and I want to loop my program to the same number of times (Iteration) in conjunction with the numbers of sub-folders generated by the "list folder" function. How can I do it?
Any help is greatly appreciated.
Solved! Go to Solution.
05-29-2013 08:31 PM
Wire the string array to the border of the for loop. LabVIEW will automatically iterate through each element of the array; you should not wire anything to the N terminal of the for loop. This is the default behavior for arrays entering a loop; if you do not want auto-indexing, right-click on the tunnel (where the array enters the loop) to change the behavior.