Alright, I am programming an application and have run into a very frustrating problem. Basically its this: I have button on the front panel that when pressed, generates an array of strings and displays it. I have a second button programmed with the intention of allowing the user to save the data when it is pressed. Both of the buttons were originally OK buttons, so basically they're true when pressed and immediately revert to false when they're read. The problem arises from the fact that all of the buttons in my program are tied to case statements in an infinite loop. So basically my question is this: How do I get the array of strings out of the first case statement without it being overwritten mere fractions of a second later by the f
alse case for the same statement. I keep running into this problem over and over again where labview insists that all cases produce a value even when I only -want- one of the cases to produce a value and the other case to do nothing.