knicewar
2008-08-14 01:10:06 UTC
I'm still getting the hang of this LabView programming style and have found a repeating (and annoying) design pattern that I'm sure others have encountered. I have a long series of steps to perform. Each step is a prerequisite of the next step and each could fail. So I've found myself creating these massive nested case structures so that step 2 only gets called if step 1 succeeds, step 3 only if step 2 is OK, etc. YUCK! What is the Right Way to handle a chain like this? Thanks,Keith.