06-25-2013 08:45 PM
I want to use a string indicator to show continuous test output (continuously concatenate the new output to the end of current string). This test may run about several days. I want to know if the string indicator's length limit, is it possible that some error happen like overflow?
Solved! Go to Solution.
06-25-2013 08:48 PM
It will go until you run out of memory. I would suggestion having some sort of limit. If the string gets to length "x" delete the oldest line.
06-25-2013 08:53 PM
Thanks for your idea.