04-25-2009 08:32 AM
I have a main application where I can call different tests. When I start a test, a subVI front panel opens and start running. When the subVI is running I can't change the value of the main application front panel controls. I remember having a similar issue a few years ago but I can't remember how I fixed it, probably by changing a setting somewhere but I went through all the menus and didn't find anything.
Anyon can help?
Thanks
Ben
(I'm using LabVIEW 8.6.1)
04-25-2009 09:28 AM
There is no setting that will fix this. If the subVI is statically called (i.e., it's on the block diagram and you're basically using a case structure to call a specific one), then the calling VI must wait until the subVI finishes before it can continue. You have two ways to fix it:
04-27-2009 08:15 AM
Thanks fo your answer smercurio but I finally found out why I was not able to modify the controls on the front panel. I'm using an event structure and I added some event cases without unchecking the "lock front panel until event case for this event completes" box.
So, for other people who may encounter a similar issue, you have to right click the event structure, select "edit events handle by this case..." and uncheck the "lock front panel until event case for this event completes" box.
Ben
04-27-2009 10:14 AM