Hi there, this should be fairly straight forward and there are fiddles for it, but as I'm quite new to Labview I'd like to know the best way to do this.
I have a state machine (using the basic state machine template) for a tester sequence, and would like to have one text box on the front panel which is updated as each state is executed (ie. in my init state, the textbox will read, "Initialising test..", then in the setup state, "Setting up signals.."). Up until now, I've just had a string constant inside of each case, tunnelling out to a text indicator in the while loop (note, the while loop has a 1500ms Wait function in it). This works well (for the human eye) if the contents of the case structure take considerably less time to execute than one iteration of the while loop, however, one of my cases takes much longer, which means the string data inside the case structure isn't passed out of the case structure tunnel until the case has finished being executed, and thus the text isn't shown in the front panel text box. I'd be very appreciative if any of you could give me hints on how to fix this properly.
Thanks very much.