I have a problem,
I created a labview application (exe) that writes values in a global variable. My global variable is a table of clusters. Each cluster is made of a name and a value.
I want to read some of these values from an external application (VB). Typically i enter the name, and i want to retrieve the corresponding value.
One solution (the one i tried ) consist of creating a labview dll that read the value. And then use this dll from VB. But i had severeal problems :
1) If i run both vi, setvalue, getvalue, everything works perfectly.
2) If i run setvalue vi , and try to get the value from my VB application, it doesn't work (get wrong value).
3) If i run setvalue.exe and try to get the value from getvalue.vi it doesn't work as well...
I think everything come from the memory management, maybe the global variable are loaded in a different memory ?? I don't know exactly how it works.. Could anyone help me ???