LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Add paths in an array

I have to open different .bmp-files, which are in different folders. On the screenshoot you can see how i realised it after got some tips in the forum. Now my problem is, that i would like to add the paths in an array from which i can later on get the paths of the bmp and create a avi. I tried different solutions with the array functions but each rewrite the paths and didn't list them after and after. Some ideas how to manage?
0 Kudos
Message 1 of 2
(2,857 Views)
The problem is with your for loop. In the first place, you would want to initialize the array outside the loop and pass it through the loop using a shift register. That way, you'll always be working on the same data and not  on a new array each time. Also, you would want to use Replace Array Subset instead of Insert Into Array.
 
In any case, it would be much simpler to simply do this:
 
 
To learn more about LabVIEW, I suggest you try searching this site and google for LabVIEW tutorials. Here, here, here and here are a few you can start with and here are some tutorial videos. You can also contact your local NI office and join one of their courses.
In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf).

Message Edited by tst on 09-13-2006 12:53 PM


___________________
Try to take over the world!
0 Kudos
Message 2 of 2
(2,850 Views)