04-03-2009 02:40 AM
I am trying to make it to where when I select an array object it will send it to an html document the only problem is it is an infinit array, so i can send a finite to a HTML document but infinit I can not.
here is the code.
Solved! Go to Solution.
04-03-2009 02:51 AM - edited 04-03-2009 02:52 AM
Hi Harold,
you can use a for loop with a case structure inside of it.
Mike
04-03-2009 03:45 AM
perfect, I need to read up on my for loops I know how to use them in C++ but i geuss it is different in labview
thank you
04-03-2009 09:39 AM
Harold Timmis wrote:perfect, I need to read up on my for loops I know how to use them in C++ but i geuss it is different in labview
Not really. Loops are loops are loops. LabVIEW loops have the capability of autoindexing, which is what Mike is using in his example. This is equivalent to a "foreach" statement in text-based languages.