05-28-2004 08:19 AM
05-28-2004 09:47 AM
05-30-2004 03:37 PM
05-08-2007 10:58 AM
Hi Lavezza,
I am having the same question (see this please) and I believe that the solution may be around what you explained with your example User_Event_to_call_another_Event_case.vi,
My specific problem is that I can not reselect fron the slider a new directory to then load the test sequences to run. Could you try my example?
Thanks
JLM
05-08-2007 11:28 AM
The simplest approach is to add the second event into the same event case. This only works if both events will do exactly the same thing. The next method also simple is using the signalling node. A slightly more complex put more flexible solution is to cascade the events usinf user events. The method I use is to use a queued state machine, there is an event loop which queues up strings of states for a consumer loop to execute. This is a little more complex to implement but is a very powerful and flexable architecture.
Paul
05-09-2007 06:12 AM
05-09-2007 06:41 AM
05-10-2007 08:44 AM - edited 05-10-2007 08:44 AM
Message Edited by Coal Man on 05-10-2007 08:46 AM
05-10-2007 09:04 AM
05-12-2007 08:33 AM
Thanks I have not had a chance to post an example. One expansion on the queue, you are not limited to just sending an enum state, you can catually queue up a cluster which can contain states and parameters. This is a very flexable application architecture.
Paul