07-08-2025 01:12 PM
I have a binary file that contains an array of clusters, containing values and a timestamp. I read the file to get my array (It should be empty), then I try to insert my cluster element into the array.
Somehow, the element disappears and the array is left empty.
I am still learning LabVIEW so my problem may be obvious, but I do not know it.
Thank you for the help.
Here is the program.
Solved! Go to Solution.
07-08-2025 01:29 PM
The array is not empty: you use a one-element array as default for read binary file. If you look at the other element of the final array, you will find the inserted value. Use the index in the upper left corner.
07-08-2025 01:33 PM - edited 07-08-2025 01:35 PM
It works, thanks.