08-25-2005 04:05 AM
08-25-2005 04:30 AM
08-25-2005 11:37 AM
Globals are specific per-LV-application. This means if you run two EXEs that you built in LV, even on the same computer, the globals won't be shared.
The easiest option is probably using DS, as suggested by Jack. You right click the control in one PC and select to publish it as a certain address and right click the other control and choose to subscribe to that address and they will be synched.
Another option is using VI server to open a connection to the remote LV app and get the value of the specific control. Search for VI server in the documentation for more information.
Yet another option is implementing your own TCP messaging protocol. You can search the example finder for TCP and this site for TCP message protocol to find some examples.
What I don't understand, however, is why not get the data directly from the FP? There shouldn't be any problem with 2 computers reading the data from the FP.