' The object Dim F4 As New F4SM.F4SMGet Dim Sendstring As String ' Refresh the data from the sharedmemory. (getting the data !) F4.RefreshData() SendString = "" & _ F4.FD.f4_kias & ";" & _ F4.FD.f4_rpm & ";" & _ F4.FD.f4_oilPressure & ";" & _ "" ' If you want to send the data using UDP to a client. (Localhost: 127.0.0.1) ' F4.SendData(IPAddress, 10080, SendString) ' For debugging purposes adding the string to a textbox to see what is sended. TextBox1.Text = SendString ' Destroy the object F4 = Nothing