07-28-2017 01:41 PM
Hello,
I would like to Stop concatenating strings when a certain string length is reached.
Here is my trial on the VI.
Could you assist?
Regards,
07-28-2017 02:12 PM
Instead of wiring a false constant into the stop terminal of your while loop (the red stop sign), you should wire a boolean that indicates whether the string length is reached (maybe you mean this to be the boolean that you are wiring into the case structure?). Then your loop will stop when the boolean becomes true.
07-28-2017 02:55 PM
Try something like this:
07-29-2017 11:32 AM