yes i have and i think i know what i am doing wrong.. i was hoping to mock up my messy (and actual) code with a simple example given by altenbach.. here is my scenario:
I am reading from a server continuously using TCP Vis every 5 seconds..this is my first loop. I am using queues to pass the data to the second loop, which processes the data..i have a 3rd loop that is event driven by a boolean's value change which consists of a subvi that allows to configure the settings of the server by writing to the server via TCP write. The configure subVI has multiple events, such as changing transmission time, changing settings etc. which are all event driven as well.... I'd like to be able to pass the data from my first loop into the subvi such that the subvi contains the streaming data in the first loop.
Problem: I am unable to continuously send the data to the subvi because my configure subvi is supposed to open its FP when called. I have posted this code in another similar discussion forum and someone suggested to use Globals within the event structure of my Configure VI... this works fine only when the event is triggered... however, i'd like the data to be continuously updated in the subvi and use the current data for my events.
I hope what I explained makes sense... I'd appreciate if you can suggest a method to implement my code.
Thanks
KM