Hi,
There are some or few problems in that code.
Maybe someone can help me with that OutGauge program![](/static/smilies/shrug.gif)
![](/static/smilies/thumbsup.gif)
There are some or few problems in that code.
Maybe someone can help me with that OutGauge program
![](/static/smilies/shrug.gif)
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
![](/static/smilies/thumbsup.gif)