I'm trying to connect two applications in LabWindowsCVI 6.0 using OPC Server (in the same PC). Someone can send me an exemple with a double value is passed from the first application to the second and another value is passed from the second application to the first ?
If you are trying to communicate between two CVI applications you should not be using OPC. You should use interprocess communication such as TCP or DataSocket. Here are some example programs for you to look at to see how this is done:
\cvi\samples\tcp\client.prj (TCP client application) \cvi\samples\tcp\server.prj (TCP server application)