09-14-2005 08:54 PM
09-14-2005 09:24 PM - edited 09-14-2005 09:24 PM
Your main loop cannot spin, unless all the other loops finish. The upper loops don't stop unless text has been eneter or OK is pressed, resp. This means that the event structure can only fire once. Use execution highlighting to verify!
Put the upper and lower parts in paralell loops to prevent the blocking. (see attached quick modification, LabVIEW 7.1).
Btw, you don't need these references (use the terminals directly) and sequence structures (use dataflow to force execution order).
(You also don't need that fancy shutdown procedure in the exit case, etc. There are probably better ways do do the upper condes isntead of using stacked while loops.)
Message Edited by altenbach on 09-14-2005 07:28 PM
09-14-2005 09:30 PM
09-14-2005 09:33 PM
09-14-2005 09:47 PM