Currently, I have an application which will open webpages and such by the means of clicking a button. All of that works fine, but what I am really wanting to do is send out a tiny ping every once in a while so people will know if the servers are online or offline before they try to join. I would simply want it to say "Online" or "Offline" below it. How would I constantly check if a server is up?
Here is the code I have so far:
Public Class MainApp
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Process.Start ("steam://connect/216.52.148.114:2302") ' -Not WORKING
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
Process.Start ("WEBSITEURL") ' -WORKS
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Process.Start ("TEAMSPEAK IP") ' -WORKS
End Sub
End Class
It all works fine except connecting to the Arma 3 server through Steam. It does this: