LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple paths to closedown

Bit of a luxury but .... I have a main menu in which I close down multiple loops by using a queue to pass on 'actions' from an event structure running in a loop handling operator activity - so far so good. One operator activity is to click on the window panel close button (X) another operator option is to click on a runtime menu option - EXIT - supplied by me. I can make either option (or both) send the shutdown command on the queue but ideally to get a single way out it would be nice if: from the EXIT menu event I could trigger a panel close event - or from the panel close? event I could programmatically 'click' the run time menu exit tag to cause an event - any ideas anyone? I could point both at a switch (STOP) and use the VAL(sig) property but then I get an extra button which I have to hide - too messy.
0 Kudos
Message 1 of 6
(1,058 Views)

You said you have a queue that you put a shutdown command on from either action.  I would just let both actions do the same thing.  I don't see any benefit for consolidating further having one trigger the other.

 

If there were other things you have to do besides just putting the shutdown command on the queue, then wrap them all up in a Shutdown subVI and have both locations call that same subVI.

0 Kudos
Message 2 of 6
(1,030 Views)

Yeh - I guess so, but have the same code twice? No matter how trivial? Just seems a shame you have VAL(Sig) for most controls but not other'menu' actions.

0 Kudos
Message 3 of 6
(1,026 Views)

Sure.  If code is trivial, then it is trivial to put it twice.

 

If the menu does something, whether it is one thing or a long list of things, and another action (like the X button) does something whether is is the same one thing or the same long list of things,  at the bare minimum each one as to do one action.

 

It's like I can e-mail you to tell you to do something or text you to tell you to do something.  Why would I need to send a text that triggers an e-mail to be sent?  Or send an e-mail that triggers a text to be sent?

 

You think you are "simplifying" things by having two different actions do one thing,  But really you are complicating it by having one action trigger the other action to do that one thing.  That is still 2 steps.

Message 4 of 6
(1,010 Views)

If you think you'd use this event case somewhere else, you could have a "Stop" user event case that does your stopping. When your Panel Close? event fires, discard it and send a Stop user event. When your menu item gets chosen, send the same user event. This way you could theoretically add this functionality externally later on (if you use this code in a subVI), from the command line, etc.

0 Kudos
Message 5 of 6
(989 Views)

I use the JKI State Machine for things like this.

 

Different events can fire off the same shutdown script (macro) from multiple places, you can even fire off that shutdown script with a user event also.

 

I would not put that logic inside the Event Case, put it outside(State Machine) so multiple events can access it.

 

mcduff

0 Kudos
Message 6 of 6
(979 Views)