For this kind of interapplication communication, I would recommend using DataSocket. Assuming you have DataSocket installed on your machine, you should be able to run the following two projects: 1) writer.prj and 2) reader.prj. You'll find them in the "\samples\datasocket" directory.
Through DataSocket (which uses TCP/IP and ActiveX technology), the Writer connects to the DataSocket server launched on your machine. The Writer sends data to the server that can be retrieved by any allowed client. The data can be a single number, a list of numbers or other supported data types.
The Reader will connect to the server and read this information live (i.e., as it is being generated by the Writer) and display it on its user interface.
So there you have it. Tw
o projects that share information, without worrying about variable's memory space or even synchronization. DataSocket takes care of all the details for you.
If you are not familiar with DataSocket, I'd suggest you check out our Developer Zone site and search for DataSocket examples, white papers, etc.
Regards,
Azucena
NI