08-05-2013 08:16 AM
Hello, I have a function in dll as void set(int * a){ (*a)=99;}
And I connect a int32 to the dll. But when I run the vi, the value of int32 does not change.
As the pic shown below:
Solved! Go to Solution.
08-05-2013 09:28 AM
You connected a control to the DLL parameter. That means the value from the control is passed to the DLL, ... and finito! You need to connect an indicator to the right side of the DLL parameter to see the value returned from the DLL.
08-06-2013 04:39 AM
Thank you very much!