07-09-2015 05:22 PM
I have a VI with a 1D array of numerics that I want to copy its data (as an array) to a LabVIEW executable which also contains a 1D array of numerics.
I do not think this can be done but want to get confrimation from the community.
07-09-2015 05:30 PM
Once the executable is built, the binary composition is completed. You can't change that.
If you have access to the executable's source, you can easily write to a file that is shared. The VI writes to the file and the executable reads from it. That passes the data between the two. I wouldn't try to access it from both at the same time.
07-09-2015 05:34 PM
That is not what I was asking. I will restate:
As an operator, I want to copy data from the executable (Ctrl-C) and paste (Ctrl-V) it into VI. Like copying data from say Visual Studio development environment to an Executable made by Visual Studio.
07-09-2015 06:29 PM
While you are running your executable can you right click on the array (make sure it's not an individual element) and copy data? Then try putting down an array in an empty block diagram and pressing run continuously which should change the available RCM so that when you right click the array you can paste data.
This worked VI to VI so I was just kind of hoping it would work from executable to VI so I have not actually tried this.
07-09-2015 06:30 PM
I just noticed your two posts have you starting and ending in different locations but it should be the same idea.