Good day 
I just have I question regarding FSUIPCClient.DLL 2.4.0.0 calls. 
I am using the module for interfacing a self-made program based on VB.NET. 
In previous Versions of FSUIPC (VB6) there was a call like: 
---------------------- 
If FSUIPC_Read(adr, 1, VarPtr(fs_data), dwResult) Then 
If FSUIPC_Process(dwResult) Then 
...do something 
End if 
End if 
----------------------- 
Now I Need for VB.NET FSUIPC4 the same read-Call... 
I tried it with following code, but it is not what I need for changing variables... 
----------------------- 
Public Sub FSUIPCDATA_get() 
FSUIPCConnection.Process() 
Dim dataget As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(adrget) 
datagetv = dataget.Value 
End Sub 
----------------------- 
"dataget" and "adrget" are changing variables. 
With Kind regards...