12-06-2006 12:36 PM
12-06-2006 01:20 PM
Your code does not make a lot of sense. Can you explain the FOR loop and built array node?
Do you want to read several values into an array until you reach an empty string? In this case you would need to build your array in a shift register. Append elements unless the string is empty.
If you just want to read a single value, just get rid of the while loop entirely and only read the first value. 😄