08-24-2006 05:02 AM
08-25-2006 02:18 AM
I'd create named queues in both VI to pass data. If you are concerned about having named queue perhaps you could create a queue in one VI and store its reference in a global resource for the other VI to access.
Alternatively you could use TCP.
Regards
Steve
08-25-2006 07:06 AM
08-25-2006 07:20 AM
08-28-2006 08:20 AM
Thanks for your help.
I try your suggestions but I always meet the same problem. I do not succeeded to call a VI from TestStand on background task (TestStand is the main application in my system). The TestStand sequence is stopped in the TestStep which is calling VI. I'd like to continue to the next TestStep during the VI execution. I want that the both execution (labview VI and TestStand Sequence) are running simultaneously and that TestStand sequence make the synchronisation.
Regards,
Sylviane.
08-28-2006 12:50 PM - edited 08-28-2006 12:50 PM
Hi,
Here is an example which will launch a VI and allow the execution to continue.
I have used a Sequence which has been setup to execute in a new execution. This sequence is allowed to execute the VI. The Main Sequence will then carry on to the next step, in this case it sit at a Wait Statement. which is waitiing for the Sequence to complete. This will happen when you press the Stop button on the VI.
Hope this help.
Regards
Ray Farmer
Message Edited by Ray Farmer on 08-28-2006 06:51 PM
08-29-2006 02:55 AM