06-09-2008 09:15 AM
06-09-2008 09:22 AM
You've got a major flaw in your program. The subVI has a while loop that is terminated with a front panle Boolean. You cannot terminate that while loop because the front panel is not made visible. The subVI will only return data to the main when it finishes but it cannot finish. This is pretty basic dataflow programming that you are violating.
If your main program has a loop, there is no reason to have a loop in your subVI. Just eliminate the while loop.
p.s. You do not have timed loop in your main. The timed loop is a specific structure. You have a for loop.
06-09-2008 09:39 AM
Hey Dennis thanks for the info, this is what happens with no prior programming skills. I will work out the info you gave me and post back with my results.
Thanks again,
Eric
06-09-2008 12:47 PM
*Update*
Fixed!!
Thanks for you help Dennis this worked great!!