05-27-2010 09:21 AM
05-27-2010 09:23 AM - edited 05-27-2010 09:24 AM
What function are you referring to, and which code are you referring to? You also have to clarify the format of your source string. I.e., whether you have hex values, or ASCII letters.
To learn more about LabVIEW it is recommended that you go through the tutorial(s) and look over the material in the NI Developer Zone's Learning Center which provides links to other materials and other tutorials. You can also take the online courses for free.
05-27-2010 09:31 AM
05-27-2010 09:34 AM
That is the Build Array primitive from the Array palette. You really should consider the tutorials smercurio_fc recommended.
Lynn
05-28-2010 01:41 AM
This almost solves my problem 🙂
Since my string updates 3 times in a second (in a while loop) I need to figure out how to display all of the data, and not just the current value. I tried to use Build Table Express VI, but it requires a numeric input, and I can't convert such a large HEX string to a number.
05-28-2010 01:45 AM
Hey Zabic,
What was the problem with the solution from smercurio_fc's
the function that you were unable to find is just a build array VI from the array pallate.
05-28-2010 02:01 AM
05-28-2010 02:09 AM - edited 05-28-2010 02:11 AM
Can you try something like this??
05-28-2010 02:58 AM
05-28-2010 03:07 AM
Yes Rolf, i think you are right. I am scratching my head to find the alternative solution for the problem. Or even programmer should take care of such pitfalls and try to avoid it.
In this case I think programmer can limit the size of the array to be displayed in table and delete all the previous data from the array. Please let me know if there is any alternative method to do it.
Thanks again for the Point Rolf.