12-03-2013 02:43 AM
Hi
i am making one vi using user events in which what i want to do is want to execute one event after another sequentially by using user events, i know we can di it using queues also but our requirement is to do by user events
i have tried something in the vi i ma attaching below, but getting wrong somewhere.
Thankyou
12-03-2013 03:00 AM
12-03-2013 03:03 AM
Thanks Udka for reply,
actually this is part of the application i am working upon, it is already been created with user events so we cant change the architecture, yes it's going to my user event after boolean2 button triggers but what we want is it should go to boolean3, then boolean4 and boolean5 event case, that i am not getting how to do.
12-03-2013 03:07 AM
Perhaps add more specific user events, then double-up the events handled:
And I get another chance to show Jack Dunaway's User Events presentation!
Download Jack's presentation (all VIs, no powerpoint), here:
https://github.com/w...icks-and-Sundry
"Download ZIP" button
12-03-2013 04:49 AM
ThankYou Todd_Lesher fir your reply,
i will try this way that you have explained but is their any way that we can do this by using the serial number of the event cases in array in generate event vi, like in the example https://decibel.ni.com/content/docs/DOC-4111 shown in this link
they have fired one event using another by using some array number but i aqm not getting how it has been done in this example.
12-03-2013 05:00 AM
12-03-2013 05:23 AM
That example just shows how to fire a user event when a value-change event is fired.
If all of your user events have the same data type, you could make an array of them and access them by array index.
12-09-2013 09:35 PM
Todd_Lesher
Perhaps add more specific user events, then double-up the events handled:
And I get another chance to show Jack Dunaway's User Events presentation!
Download Jack's presentation (all VIs, no powerpoint), here:
https://github.com/w...icks-and-Sundry
"Download ZIP" button
This method told by you is working fine but we trying to solve one problem athat we are getting i want to know if it is possiblelike in the approach you had told we need to add up more user events and then need to increase the events handled i want to know is there any apporach by which we dont need add up and register user event every time, so that even if we increase our controls from 3 to 5 there is no need to add up more user event and register themseparately means some for loop or with the help of array if we can do, we tried with for loop but their also while registering we are getting problem,