05-10-2010 07:36 PM
I have a program that runs continuously. During that time errors are produced and I store them in an array. What is the best way to display the array in a window that the user could scroll up or down while the program runs?
Thank you.
Solved! Go to Solution.
05-10-2010 11:21 PM
If you unbundle te error cluster you can see the "error number" and the "error description" which can be formatted to a string (some thing like Error 12: bla blah occured here and here(and may be other info also)) and you can populate this to a string indicator on the FP. Now since the string indicator comes with a default scroll bar it becomes easier to scroll around
Guru
05-11-2010 10:00 AM
What I have is a cluster of two elements, where both are 1-D arrays of strings. I'm trying to figure out how to put the data into a table where each column is one of the arrays.
See attachment.
05-11-2010 10:39 AM
05-11-2010 10:51 AM - edited 05-11-2010 10:53 AM
05-11-2010 11:27 AM
Why does it work with your table and not with mine?
See attached.
05-11-2010 11:30 AM
05-11-2010 11:33 AM
Thank you!