LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

selecting an array of strings to go to a html document

Solved!
Go to solution

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.

Harold Timmis
htimmis@fit.edu
Orlando,Fl
*Kudos always welcome:)
0 Kudos
Message 1 of 4
(2,415 Views)
Solution
Accepted by topic author Harold_Timmis

Hi Harold,

you can use a for loop with a case structure inside of it.

 

 

Mike

Message Edited by MikeS81 on 04-03-2009 09:52 AM
Message 2 of 4
(2,410 Views)

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

Harold Timmis
htimmis@fit.edu
Orlando,Fl
*Kudos always welcome:)
0 Kudos
Message 3 of 4
(2,396 Views)

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. 

Message 4 of 4
(2,362 Views)