Hi,
There are some or few problems in that code.
Maybe someone can help me with that OutGauge program
There are some or few problems in that code.
Maybe someone can help me with that OutGauge program
Private Sub GetData()
Dim receivingUdpClient As New UdpClient(55)
Dim RemoteIpEndPoint As New System.Net.IPEndPoint(System.Net.IPAddress.Any, 55)
Try
Dim receiveBytes As [Byte]() = receivingUdpClient.Receive(RemoteIpEndPoint)
Dim returnData As String = Encoding.ASCII.GetString(receiveBytes)
RichTextBox1.Text = returnData.ToString()
Catch Ex As Exception
MsgBox(Ex.ToString())
End Try
End Sub