02-24-2006 05:28 PM
02-24-2006 05:38 PM
Yes, that is one disadvantage of editing the radio buttons control on the panel directly is that any constants you've created off the control's terminal become stale. So it might not be a bad idea to typedef a radio buttons control, and create all your constants based off that typedef, so that when you add/remove/edit items in the control, all enum constants you've created off that control will be updated automatically.
-D
02-24-2006 07:06 PM
Thanks for the help, guys! I've massaged Dennis' event structure example to get close to the goal. Here's the next question:
In event [4] I want to flash an indicator while an event is active. You can see in the attached vi that the "Probe Cold" indicator flashes when the operator selects "Low Freeze", but I've implemented the flash function as a brute force For loop that locks up the program until the loop counter hits max count. What is the technique to generate some activity inside an event box that doesn't lock out event monitoring?
Jeff